forked from slimphp/Slim
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
34 lines (34 loc) · 927 Bytes
/
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
{
"name": "gammadia/slim-2.x",
"type": "library",
"description": "Fork of slim/slim with support for modern PHP versions.",
"replace": {
"slim/slim": "^2.6"
},
"keywords": ["microframework","rest","router"],
"homepage": "http://github.com/codeguy/Slim",
"license": "MIT",
"authors": [
{
"name": "Josh Lockhart",
"email": "[email protected]",
"homepage": "http://www.joshlockhart.com/"
}
],
"require": {
"php": "^7.2|^8.0"
},
"require-dev": {
"phpstan/phpstan": "^1.7",
"rector/rector": "^0.12",
"phpunit/phpunit": "^8.5",
"overtrue/phplint": "^2.4|^3.0"
},
"suggest": {
"ext-mcrypt": "Required for HTTP cookie encryption",
"phpseclib/mcrypt_compat": "Polyfil for mcrypt extension"
},
"autoload": {
"psr-0": { "Slim": "." }
}
}