-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
43 lines (43 loc) · 1.27 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
{
"name": "cdn77/test-utils",
"description": "Cdn77 Test Utils for PHP",
"keywords": [
"testing",
"cdn77"
],
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Cdn77\\TestUtils\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Cdn77\\TestUtils\\Tests\\": "tests/",
"Cdn77\\TestUtils\\Tests\\Tests\\TestCheck\\Fixtures\\EveryTestHasSameNamespaceAsCoveredClass\\": "tests/TestCheck/Fixtures/EveryTestHasSameNamespaceAsCoveredClass/tests"
}
},
"require": {
"php": "^8.2",
"league/construct-finder": "^1.4",
"phpunit/phpunit": "^10.1 || ^11"
},
"require-dev": {
"cdn77/coding-standard": "^7.0",
"infection/infection": "^0.29.0",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^2",
"phpstan/phpstan-phpunit": "^2",
"phpstan/phpstan-strict-rules": "^2"
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": true,
"phpstan/extension-installer": true
},
"sort-packages": true
}
}