forked from Roave/no-leaks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.02 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": "mniemcewicz/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 || ~8.3.0",
"ext-json": "*",
"phpunit/phpunit": "^10.5"
},
"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.34.0",
"psalm/plugin-phpunit": "^0.18.4",
"squizlabs/php_codesniffer": "^3.8.1",
"vimeo/psalm": "^5.22.0"
}
}