-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
76 lines (76 loc) · 2.12 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
{
"name": "juliangut/slim-routing",
"description": "Slim framework routing",
"keywords": [
"slim framework",
"routing",
"annotations"
],
"homepage": "https://github.com/juliangut/slim-routing",
"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-routing",
"issues": "https://github.com/juliangut/slim-routing/issues"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.0",
"juliangut/mapping": "^1.4.2",
"slim/slim": "^4.7",
"symfony/polyfill-php81": "^1.27"
},
"require-dev": {
"ext-dom": "*",
"ext-json": "*",
"doctrine/annotations": "^2.0",
"infection/infection": "~0.25|~0.27",
"juliangut/easy-coding-standard-config": "^1.14",
"juliangut/phpstan-config": "^1.1",
"laminas/laminas-diactoros": "^3.2",
"mikey179/vfsstream": "^1.6",
"overtrue/phplint": "^9.0",
"phpcompatibility/php-compatibility": "^9.3",
"phpmd/phpmd": "^2.14",
"phpunit/phpunit": "^9.6|^10.4",
"povils/phpmnd": "^3.2",
"roave/security-advisories": "dev-master",
"slim/twig-view": "^3.3",
"spatie/array-to-xml": "^3.2",
"symfony/console": "^6.0|^7.0",
"symfony/yaml": "^6.0|^7.0"
},
"suggest": {
"slim/twig-view": "In order to return Twig rendered responses (>=3.3)",
"spatie/array-to-xml": "In order to return XML responses (>=3.2)",
"symfony/yaml": "In order to load routing from YAML files (>=6.0)",
"symfony/console": "In order to use console commands (>=6.0)"
},
"autoload": {
"psr-4": {
"Jgut\\Slim\\Routing\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Jgut\\Slim\\Routing\\Tests\\": "tests/Routing/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": true,
"phpstan/extension-installer": true
}
}
}