-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 899 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 899 Bytes
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
{
"name": "designsecurity/progpilot",
"description": "A Static Analyser for security",
"license": "MIT",
"authors": [
{
"name": "Eric Therond",
"email": "eric.therond.fr@gmail.com"
}
],
"require": {
"php": ">=8.3",
"ircmaxell/php-cfg": "^0.8.0",
"symfony/yaml": "^7.3.2",
"symfony/console": "^7.3.2",
"myclabs/deep-copy": "^1.13.4",
"bartlett/sarif-php-sdk": "^2.2.0"
},
"require-dev": {
"phpunit/phpunit": "^12.3.5",
"phpro/grumphp": "^2.14.0",
"squizlabs/php_codesniffer": "^3.13.2"
},
"bin": ["projects/phar/progpilot"],
"autoload": {
"psr-0": {
"progpilot": "package/src"
}
},
"config": {
"allow-plugins": {
"phpro/grumphp": true
}
}
}