forked from slimphp/Slim-Http
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
74 lines (74 loc) · 1.61 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
{
"name": "slim/http",
"type": "library",
"description": "Slim PSR-7 Object Decorators",
"keywords": ["psr7", "psr-7", "http"],
"homepage": "http://slimframework.com",
"license": "MIT",
"authors": [
{
"name": "Josh Lockhart",
"email": "[email protected]",
"homepage": "http://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"
}
],
"require": {
"php": "^7.2",
"ext-SimpleXML": "*",
"ext-fileinfo": "*",
"ext-json": "*",
"ext-libxml": "*",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0"
},
"require-dev": {
"adriansuter/php-autoload-override": "^1.2",
"laminas/laminas-diactoros": "^2.3",
"nyholm/psr7": "^1.3",
"php-http/psr7-integration-tests": "dev-master",
"phpstan/phpstan": "^0.12.37",
"phpunit/phpunit": "^8.5",
"squizlabs/php_codesniffer": "^3.5"
},
"provide": {
"psr/http-factory": "^1.0"
},
"autoload": {
"psr-4": {
"Slim\\Http\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Slim\\Tests\\Http\\": "tests/"
}
},
"scripts": {
"test": [
"@phpunit",
"@phpcs",
"@phpstan"
],
"phpunit": "phpunit",
"phpcs": "phpcs",
"phpstan": "phpstan analyse src --memory-limit=-1"
},
"config": {
"sort-packages": true
}
}