-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
65 lines (65 loc) · 2.03 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "codenamephp/installer",
"description": "Installer that uses template folders to setup projects, e.g. from a github template repository",
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "Bastian Schwarz",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"twig/twig": "^3.0",
"symfony/filesystem": "^6.0 || ^7.0"
},
"require-dev": {
"mikey179/vfsstream": "^1.6.8"
},
"autoload": {
"psr-4": {
"de\\codenamephp\\installer\\": [
"src"
]
}
},
"autoload-dev": {
"psr-4": {
"de\\codenamephp\\installer\\test\\": [
"test"
]
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false
}
},
"scripts": {
"phpunit": "XDEBUG_MODE=coverage tools/phpunit.phar -c test/phpunit.dist.xml test/",
"psalm": "XDEBUG_MODE=off tools/psalm --threads=10 --long-progress",
"composer-unused": "XDEBUG_MODE=off tools/composer-unused --no-progress --no-interaction",
"composer-require-checker": "XDEBUG_MODE=off tools/composer-require-checker --no-interaction",
"infection": "XDEBUG_MODE=coverage tools/infection --min-msi=100 --min-covered-msi=100 --threads=4 --no-progress --show-mutations",
"phive:update": "XDEBUG_MODE=off phive update && git add tools/* phive.xml && git commit tools/* -m 'Updated phive dependencies'",
"ci-all": [
"composer validate",
"@phpunit",
"@psalm",
"@composer-unused",
"@composer-require-checker",
"@infection"
]
},
"scripts-descriptions": {
"phpunit": "Runs phpunit tests",
"psalm": "Runs psalm static analysis",
"composer-unused": "Checks for unused composer packages",
"composer-require-checker": "Checks for missing required composer packages",
"infection": "Creates mutation tests to discover missing test coverage",
"phive:update": "Updates phive dependencies and commits them",
"ci-all": "Runs all ci tools in sequence"
}
}