generated from codenamephp/template.php.library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (60 loc) · 1.69 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
{
"name": "codenamephp/deployer.secrets",
"description": "",
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "Bastian Schwarz",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"codenamephp/deployer.base": "^3.0",
"codenamephp/platform.secretsmanager.base": "^1.0.1",
"deployer/deployer": "^7.2"
},
"autoload": {
"psr-4": {
"de\\codenamephp\\deployer\\secrets\\": [
"src"
]
}
},
"autoload-dev": {
"psr-4": {
"de\\codenamephp\\deployer\\secrets\\test\\": [
"test"
]
}
},
"config": {
"sort-packages": true
},
"scripts": {
"phpunit": "tools/phpunit.phar -c test/phpunit.dist.xml test/",
"psalm": "tools/psalm --threads=10 --long-progress",
"composer-unused": "tools/composer-unused --no-progress --no-interaction",
"composer-require-checker": "tools/composer-require-checker --no-interaction --config-file=$(pwd)/composer-require-checker.json",
"infection": "XDEBUG_MODE=coverage tools/infection --min-msi=100 --min-covered-msi=100 --threads=4 --no-progress --show-mutations",
"ci-all": [
"@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",
"ci-all": "Runs all ci tools in sequence"
},
"require-dev": {
"mockery/mockery": "^1.5"
}
}