-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.07 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
44
45
{
"name": "previousnext/phpunit-splitter",
"description": "Splits phpunit tests",
"keywords": ["testing"],
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Michael Strelan",
"email": "michael.strelan@previousnext.com.au"
}
],
"type": "project",
"require": {
"php": "^8.1",
"ext-simplexml": "*",
"symfony/console": "^6.3"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.6",
"previousnext/coding-standard": "^0.1.3",
"staabm/annotate-pull-request-from-checkstyle": "^1.8"
},
"bin" : ["phpunit-splitter"],
"conflict": {
"drupal/coder": "<8.3.21"
},
"autoload": {
"psr-4": {"PhpUnitSplitter\\": "src/"}
},
"autoload-dev": {
"psr-4": {
"PhpUnitSplitter\\Tests\\": "tests/src",
"PhpUnitSplitter\\Tests\\Fixtures\\": "tests/fixtures/src"
}
},
"config": {
"sort-packages": true,
"bin-dir": "bin",
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}