-
Notifications
You must be signed in to change notification settings - Fork 41
/
composer.json
44 lines (44 loc) · 1.05 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
{
"name":"psecio/parse",
"type":"library",
"description":"A PHP Security Scanner",
"keywords":["security","scanner","static"],
"homepage":"https://github.com/psecio/parse.git",
"license":"MIT",
"authors":[
{
"name":"Chris Cornutt",
"email":"[email protected]",
"homepage":"http://www.phpdeveloper.org/"
}
],
"require":{
"php": ">=5.4",
"nikic/php-parser": "^2.0",
"symfony/console": "2.5 - 3.2",
"symfony/event-dispatcher": "2.4 - 3.4"
},
"require-dev": {
"phpunit/phpunit": "^4.2",
"codeclimate/php-test-reporter": "dev-master",
"mockery/mockery": "^0.9",
"akamon/mockery-callable-mock": "^1.0"
},
"autoload": {
"psr-4": {
"Psecio\\Parse\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Psecio\\Parse\\": "tests/"
}
},
"config": {
"bin-dir": "bin"
},
"bin": [
"bin/psecio-parse",
"bin/parse"
]
}