-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathcomposer.json
52 lines (52 loc) · 1.05 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
{
"name": "phly/http",
"description": "PSR HTTP Message implementations",
"type": "library",
"license": "BSD-2-Clause",
"keywords": [
"http"
],
"homepage": "https://github.com/phly/http",
"authors": [
{
"name": "Matthew Weier O'Phinney",
"email": "[email protected]",
"homepage": "http://mwop.net"
}
],
"support": {
"issues": "https://github.com/phly/http/issues",
"source": "https://github.com/phly/http"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev",
"dev-develop": "1.1-dev"
}
},
"require": {
"php": ">=5.4.8",
"psr/http-message": "~1.0"
},
"require-dev": {
"phpunit/PHPUnit": "~4.6",
"squizlabs/php_codesniffer": "~2.0"
},
"provide": {
"psr/http-message-implementation": "~1.0.0"
},
"autoload": {
"psr-4": {
"Phly\\Http\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhlyTest\\Http\\": "test/"
},
"files": [
"test/TestAsset/Functions.php",
"test/TestAsset/SapiResponse.php"
]
}
}