-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
61 lines (61 loc) · 2.04 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
{
"name": "bitexpert/captainhook-infection",
"description": "Captain Hook Plugin to run InfectionPHP only against the files of the current changeset",
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "Stephan Hochdörfer",
"email": "[email protected]",
"homepage": "http://www.bitExpert.de"
}
],
"require": {
"php": "^8.0.0|^8.1.0|^8.2.0",
"captainhook/captainhook": "^5.12.0"
},
"require-dev": {
"captainhook/plugin-composer": "^5.3.3",
"infection/infection": "^0.26.16",
"madewithlove/license-checker": "^1.3",
"phly/keep-a-changelog": "^2.12.1",
"phpstan/extension-installer": "^1.2.0",
"phpstan/phpstan": "^1.9.4",
"phpstan/phpstan-phpunit": "^1.3.3",
"phpstan/phpstan-strict-rules": "^1.4.4",
"phpunit/phpunit": "^9.5.27",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.7.1"
},
"autoload" : {
"psr-4" : {
"bitExpert\\CaptainHook\\Infection\\" : "src/bitExpert/CaptainHook/Infection"
}
},
"autoload-dev" : {
"psr-4" : {
"bitExpert\\CaptainHook\\Infection\\" : "tests/bitExpert/CaptainHook/Infection"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "vendor/bin/phpcs --standard=PSR2 ./src ./tests",
"cs-fix": "vendor/bin/phpcbf",
"check-license": "vendor/bin/license-checker check",
"analyze": "vendor/bin/phpstan analyze",
"test": "vendor/bin/phpunit",
"infection": "vendor/bin/infection -j4 --ignore-msi-with-no-mutations --only-covered",
"coverage": "vendor/bin/phpunit --coverage-clover clover.xml"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true,
"captainhook/plugin-composer": true,
"phpstan/extension-installer": true
}
}
}