-
Notifications
You must be signed in to change notification settings - Fork 20
/
composer.json
40 lines (40 loc) · 1.01 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
{
"name": "roave/no-leaks",
"license": "MIT",
"autoload": {
"psr-4": {
"Roave\\NoLeaks\\PHPUnit\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"RoaveE2ETest\\NoLeaks\\PHPUnit\\": "test/e2e",
"RoaveUnitTest\\NoLeaks\\PHPUnit\\": "test/unit"
}
},
"require": {
"php": "~8.1.0 || ~8.2.0",
"ext-json": "*",
"phpunit/phpunit": "^9.6.20"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": false
},
"platform": {
"php": "8.1.99"
},
"sort-packages": true
},
"bin": [
"bin/roave-no-leaks"
],
"require-dev": {
"doctrine/coding-standard": "^12.0.0",
"roave/infection-static-analysis-plugin": "^1.35.0",
"psalm/plugin-phpunit": "^0.19.0",
"squizlabs/php_codesniffer": "^3.10.2",
"vimeo/psalm": "^5.25.0"
}
}