forked from package-health/php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
114 lines (114 loc) · 3.59 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
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "package-health/php",
"description": "Keep your dependencies up-to-date",
"type": "project",
"license": "agpl",
"authors": [
{
"name": "Flavio Heleno",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"PackageHealth\\PHP\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PackageHealth\\PHP\\Test\\": "tests"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"preferred-install": "dist",
"allow-plugins": {
"infection/extension-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.1",
"ext-filter": "*",
"ext-json": "*",
"ext-pcntl": "*",
"ext-pdo": "*",
"ext-posix": "*",
"ext-redis": "*",
"ext-zlib": "*",
"badges/poser": "^2.3",
"composer/metadata-minifier": "^1.0",
"composer/semver": "^3.2",
"courier/courier": "dev-main",
"courier/locator-container": "dev-main",
"courier/middleware-envelope-compression": "dev-main",
"courier/serializer-igbinary": "dev-main",
"courier/transport-amqp": "dev-main",
"kriswallsmith/buzz": "^1.2",
"middlewares/minifier": "^2.0",
"middlewares/trailing-slash": "^2.0",
"monolog/monolog": "^3.0",
"nyholm/dsn": "^2.0",
"nyholm/psr7": "^1.5",
"nyholm/psr7-server": "^1.0",
"php-di/php-di": "^6.4",
"phpunit/php-timer": "^5.0",
"psr/cache": "^1.0",
"psr/container": "^1.0",
"psr/http-message": "^1.0",
"psr/log": "^2.0",
"ramsey/collection": "^1.2",
"robmorgan/phinx": "^0.12.10",
"slim/http-cache": "^1.1",
"slim/slim": "^4.9",
"slim/twig-view": "^3.3",
"symfony/console": "^6.0",
"tedivm/stash": "^0.17",
"vlucas/phpdotenv": "^5.4"
},
"require-dev": {
"infection/infection": "^0.26",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpstan/phpstan": "^1.4",
"phpunit/phpunit": "^9.5",
"psy/psysh": "^0.11",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.6",
"vimeo/psalm": "^4.8"
},
"scripts": {
"console": "vendor/bin/psysh",
"infection": "vendor/bin/infection",
"lint": "vendor/bin/parallel-lint --exclude vendor .",
"phpcs": "vendor/bin/phpcs --standard=ruleset.xml app/ bin/ public/ src/ tests/",
"phpcbf": "vendor/bin/phpcbf --standard=ruleset.xml app/ bin/ public/ src/ tests/",
"phpstan": "vendor/bin/phpstan analyse --level=max --autoload-file=vendor/autoload.php app/ bin/ public/ src/",
"phpunit": "vendor/bin/phpunit ./tests/ --coverage-html=./report/coverage/ --whitelist=./src/ --testdox-html=./report/testdox.html --disallow-test-output --process-isolation",
"psalm": "vendor/bin/psalm --taint-analysis",
"test-ci": "vendor/bin/phpunit ./tests/ --disallow-test-output --process-isolation",
"test-coverage": "vendor/bin/phpunit ./tests/ --whitelist=./src/ --coverage-clover=clover.xml",
"test": [
"@infection",
"@lint",
"@phpunit",
"@phpstan",
"@psalm",
"@phpcs"
]
},
"scripts-descriptions": {
"console": "Runs PsySH Console",
"infection": "Runs mutation test framework",
"lint": "Runs complete codebase lint testing",
"phpcs": "Runs coding style checking",
"phpcbf": "Runs coding style fixer",
"phpstan": "Runs complete codebase static analysis",
"phpunit": "Runs unit and integration testing",
"psalm": "Runs complete codebase taint analysis",
"test-ci": "Runs library test suite (for continuous integration)",
"test-coverage": "Runs test-coverage analysis",
"test": "Runs all tests"
}
}