-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
composer.json
111 lines (111 loc) · 3.7 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
{
"name": "slim/slim",
"description": "Slim is a PHP micro framework that helps you quickly write simple yet powerful web applications and APIs",
"license": "MIT",
"type": "library",
"keywords": [
"framework",
"micro",
"api",
"router"
],
"authors": [
{
"name": "Josh Lockhart",
"email": "[email protected]",
"homepage": "https://joshlockhart.com"
},
{
"name": "Andrew Smith",
"email": "[email protected]",
"homepage": "http://silentworks.co.uk"
},
{
"name": "Rob Allen",
"email": "[email protected]",
"homepage": "http://akrabat.com"
},
{
"name": "Pierre Berube",
"email": "[email protected]",
"homepage": "http://www.lgse.com"
},
{
"name": "Gabriel Manricks",
"email": "[email protected]",
"homepage": "http://gabrielmanricks.com"
}
],
"homepage": "https://www.slimframework.com",
"support": {
"issues": "https://github.com/slimphp/Slim/issues",
"forum": "https://discourse.slimframework.com/",
"wiki": "https://github.com/slimphp/Slim/wiki",
"irc": "irc://irc.freenode.net:6667/slimphp",
"source": "https://github.com/slimphp/Slim",
"docs": "https://www.slimframework.com/docs/v4/",
"rss": "https://www.slimframework.com/blog/feed.rss",
"slack": "https://slimphp.slack.com/"
},
"require": {
"php": "8.2.* || 8.3.*",
"ext-json": "*",
"nikic/fast-route": "^1.3",
"psr/container": "^2.0",
"psr/http-factory": "^1.1",
"psr/http-message": "^2.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0",
"psr/log": "^3.0"
},
"require-dev": {
"ext-simplexml": "*",
"guzzlehttp/psr7": "^2.6",
"httpsoft/http-message": "^1.1",
"httpsoft/http-server-request": "^1.1",
"laminas/laminas-diactoros": "^3",
"nyholm/psr7": "^1.8",
"nyholm/psr7-server": "^1.1",
"phpspec/prophecy": "^1.19",
"phpspec/prophecy-phpunit": "^2.1",
"phpstan/phpstan": "^1.11",
"phpunit/phpunit": "^11",
"slim/http": "^1.3",
"slim/psr7": "^1.6",
"squizlabs/php_codesniffer": "^3.10"
},
"suggest": {
"ext-simplexml": "Needed to support XML format in BodyParsingMiddleware",
"ext-xml": "Needed to support XML format in BodyParsingMiddleware",
"php-di/php-di": "PHP-DI is the recommended container library to be used with Slim",
"slim/psr7": "Slim PSR-7 implementation. See https://www.slimframework.com/docs/v4/start/installation.html for more information."
},
"autoload": {
"psr-4": {
"Slim\\": "Slim"
}
},
"autoload-dev": {
"psr-4": {
"Slim\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"sniffer:check": "phpcs --standard=phpcs.xml",
"sniffer:fix": "phpcbf --standard=phpcs.xml",
"stan": "phpstan analyse -c phpstan.neon --no-progress --ansi",
"test": "phpunit --configuration phpunit.xml --do-not-cache-result --colors=always",
"test:all": [
"@sniffer:check",
"@stan",
"@test:coverage"
],
"test:coverage": [
"@putenv XDEBUG_MODE=coverage",
"phpunit --configuration phpunit.xml --do-not-cache-result --colors=always --coverage-clover build/coverage/clover.xml --coverage-html build/coverage --coverage-text"
]
}
}