-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 923 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 923 Bytes
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
{
"name" : "improvframework/http-constants" ,
"description": "HTTP-specific constants to be used in any libraries that rely on the HTTP Protocol.",
"type": "library",
"keywords": [
"improv",
"improvframework",
"php",
"http",
"constants",
"response",
"request",
"response codes",
"request methods"
],
"homepage": "https://github.com/improvframework/http-constants",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Jim DeLois",
"email": "jim.delois@improvframework.org",
"homepage": "http://www.improvframework.org/"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=5.6.0"
},
"require-dev" : {
"phpunit/phpunit": "~4.7.5",
"phing/phing": "~2.10.0",
"phpdocumentor/phpdocumentor": "~2.8.0",
"fiunchinho/phpunit-randomizer": "~2.0.0",
"php": ">=5.6.0"
},
"autoload": {
"psr-4": {
"Improv\\Http\\": "src"
}
}
}