-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
85 lines (85 loc) · 2.23 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
{
"name": "package-health/php",
"description": "Keep your dependencies up-to-date",
"type": "project",
"license": "AGPL-3.0-or-later",
"authors": [
{
"name": "Flavio Heleno",
"email": "flaviohbatista@gmail.com",
"homepage": "https://flavioheleno.com"
}
],
"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.2",
"ext-filter": "*",
"ext-hash": "*",
"ext-json": "*",
"ext-pcntl": "*",
"ext-pdo": "*",
"ext-posix": "*",
"ext-redis": "*",
"ext-zlib": "*",
"composer-runtime-api": "^2",
"badges/poser": "^2.3",
"composer/metadata-minifier": "^1.0",
"composer/semver": "^3.4",
"courier/courier": "dev-legacy",
"courier/locator-container": "dev-legacy",
"courier/middleware-envelope-compression": "dev-legacy",
"courier/serializer-igbinary": "dev-legacy",
"courier/transport-amqp": "dev-legacy",
"flavioheleno/kolekto": "dev-main",
"kriswallsmith/buzz": "^1.2",
"league/config": "^1.2",
"middlewares/minifier": "^2.0",
"middlewares/trailing-slash": "^2.0",
"monolog/monolog": "^3.5",
"nyholm/dsn": "^2.0",
"nyholm/psr7": "^1.8",
"nyholm/psr7-server": "^1.1",
"php-di/php-di": "^7.0",
"phpunit/php-timer": "^6.0",
"psr/cache": "^3.0",
"psr/container": "^2.0",
"psr/http-message": "^1.1",
"psr/log": "^3.0",
"robmorgan/phinx": "^0.15",
"slim/http-cache": "^1.1",
"slim/slim": "^4.13",
"slim/twig-view": "^3.3",
"symfony/cache": "^6.4",
"symfony/console": "^6.4",
"vlucas/phpdotenv": "^5.6"
},
"require-dev": {
"infection/infection": "^0.27",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.5",
"psy/psysh": "^0.11",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.9",
"vimeo/psalm": "^5.23"
}
}