forked from sjparkinson/static-review
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
69 lines (57 loc) · 1.65 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "sjparkinson/static-review",
"description": "An extendable framework for version control hooks.",
"license": "MIT",
"authors":
[
{
"name": "Samuel Parkinson",
"email": "sam.james.parkinson@gmail.com",
"homepage": "http://samp.im"
}
],
"support": {
"source": "https://github.com/sjparkinson/static-review",
"issues": "https://github.com/sjparkinson/static-review/issues"
},
"autoload": {
"psr-4": {
"StaticReview\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"StaticReview\\Test\\Unit\\": "tests/unit/",
"StaticReview\\Test\\Functional\\": "tests/functional/"
}
},
"bin": [
"bin/static-review.php"
],
"require": {
"php": "^5.5 || ^7.0",
"league/climate": "^2.0 || ^3.0",
"symfony/console": "^2.0",
"symfony/process": "^2.1"
},
"require-dev": {
"mockery/mockery": "^0.9",
"phpunit/phpunit": "^4.6 || ^5.0",
"sensiolabs/security-checker": "^3.0",
"squizlabs/php_codesniffer": "^2.2"
},
"suggest": {
"sensiolabs/security-checker": "required by ComposerSecurityReview.",
"squizlabs/php_codesniffer": "required by PhpCodeSnifferReview."
},
"scripts": {
"test": [
"vendor/bin/phpcs --colors --standard=PSR2 src/ bin/ hooks/ tests/",
"vendor/bin/phpunit --color=always --testsuite unit",
"vendor/bin/phpunit --color=always --testsuite functional"
]
},
"config": {
"optimize-autoloader": true
}
}