-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
102 lines (102 loc) · 3.43 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "atoolo/runtime-check-bundle",
"description": "Symfony bundle which contains tools that can be used to check whether the current runtime environment is set up as expected.",
"license": "MIT",
"type": "symfony-bundle",
"authors": [
{
"name": "veltrup",
"email": "veltrup@sitepark.com"
}
],
"require": {
"php": ">=8.1 <8.4.0",
"ext-posix": "*",
"ext-zend-opcache": "*",
"hollodotme/fast-cgi-client": "^3.1",
"monolog/monolog": "^3.6",
"symfony/config": "^6.3 || ^7.0",
"symfony/dependency-injection": "^6.3 || ^7.0",
"symfony/expression-language": "^6.3 || ^7.0",
"symfony/framework-bundle": "^6.3 || ^7.0",
"symfony/http-kernel": "^6.3 || ^7.0",
"symfony/lock": "^6.3 || ^7.0",
"symfony/messenger": "^6.3 || ^7.0",
"symfony/process": "^6.3 || ^7.0",
"symfony/scheduler": "^6.3 || ^7.0",
"symfony/security-http": "^6.3 || ^7.0",
"symfony/yaml": "^6.3 || ^7.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"infection/infection": "^0.27.6",
"phpcompatibility/php-compatibility": "^9.3",
"phpunit/phpunit": "^10.4",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.7",
"symfony/filesystem": "^6.3 || ^7.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Atoolo\\Runtime\\Check\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Atoolo\\Runtime\\Check\\Test\\": "test/"
}
},
"archive": {
"exclude": [
"/*",
"/.*",
"!/composer.json",
"!/config",
"!/src"
]
},
"config": {
"allow-plugins": {
"infection/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-main": "1.x-dev"
}
},
"scripts": {
"post-install-cmd": "phive --no-progress install --force-accept-unsigned --trust-gpg-keys C00543248C87FB13,4AA394086372C20A,CF1A108D0E7AE720,51C67305FFC2E5C0,E82B2FB314E9906E",
"analyse": [
"@analyse:phplint",
"@analyse:phpstan",
"@analyse:phpcsfixer",
"@analyse:compatibilitycheck"
],
"analyse:compatibilitycheck": "./vendor/bin/phpcs --standard=./phpcs.compatibilitycheck.xml",
"analyse:phpcsfixer": "./tools/php-cs-fixer check --diff --show-progress=dots",
"analyse:phplint": "./tools/phplint",
"analyse:phpstan": "./tools/phpstan analyse",
"cs-fix": [
"@cs-fix:phpcbf"
],
"cs-fix:phpcbf": "./vendor/bin/phpcbf",
"report": [
"@report:phpstan"
],
"report:phpstan": "./tools/phpstan analyse --no-progress --no-ansi --no-interaction --error-format=checkstyle > ./var/log/phpstan-report.xml || exit 0",
"test": [
"@test:phpunit"
],
"test:infection": "vendor/bin/infection --threads=8 --no-progress --only-covered -s || exit 0",
"test:phpunit": "./tools/phpunit.phar -c phpunit.xml --coverage-text"
}
}