-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
71 lines (71 loc) · 1.83 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
{
"name": "juliangut/slim-php-di",
"description": "Slim Framework PHP-DI container integration",
"keywords": [
"slim",
"dependency injection",
"container",
"php-di"
],
"homepage": "http://github.com/juliangut/slim-php-di",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Julián Gutiérrez",
"email": "[email protected]",
"homepage": "http://juliangut.com",
"role": "Developer"
}
],
"support": {
"source": "https://github.com/juliangut/slim-php-di",
"issues": "https://github.com/juliangut/slim-php-di/issues"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.0",
"ext-json": "*",
"ext-mbstring": "*",
"php-di/php-di": "^7.0.1",
"psr/container": "^1.0|^2.0",
"slim/slim": "^4.8"
},
"require-dev": {
"bnf/phpstan-psr-container": "^1.0",
"infection/infection": "~0.25|~0.27",
"juliangut/easy-coding-standard-config": "^1.18",
"juliangut/phpstan-config": "^1.2",
"laminas/laminas-diactoros": "^3.2",
"overtrue/phplint": "^9.0",
"phpcompatibility/php-compatibility": "^9.3",
"phpmd/phpmd": "^2.14",
"phpstan/phpstan": "^1.11",
"phpunit/phpunit": "^9.6.13|^10.4",
"povils/phpmnd": "^3.2",
"roave/security-advisories": "dev-master",
"symfony/console": "^6.0|^7.0"
},
"suggest": {
"symfony/console": "In order to use console commands (>=6.0)"
},
"autoload": {
"psr-4": {
"Jgut\\Slim\\PHPDI\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Jgut\\Slim\\PHPDI\\Tests\\": "tests/PHPDI/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": true,
"phpstan/extension-installer": true
}
}
}