-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
43 lines (43 loc) · 1004 Bytes
/
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
{
"name": "paveljurasek/phpwander",
"description": "PHP vulnerability scanner",
"minimum-stability": "dev",
"prefer-stable": true,
"license": "MIT",
"authors": [
{
"name": "Pavel Jurásek",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "git",
"url": "https://github.com/paveljurasek/php-cfg"
}
],
"require": {
"php": "^7.1",
"phpstan/phpstan": "^0.11",
"ircmaxell/php-cfg": "v4.x-dev"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"consistence/coding-standard": "^2.0",
"nette/tester": "^2.2",
"phing/phing": "^2.16",
"slevomat/coding-standard": "^3.0",
"tracy/tracy": "^2.6",
"phpstan/phpstan-nette": "^0.11",
"mockery/mockery": "^1.2"
},
"autoload": {
"psr-4": {
"PHPWander\\": "src/"
}
},
"scripts": {
"phpstan": "vendor/bin/phpstan analyse -c phpstan.neon -l4 src/ --ansi",
"tester": "vendor/bin/tester tests/PHPWander"
}
}