-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 945 Bytes
/
composer.json
File metadata and controls
46 lines (46 loc) · 945 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
42
43
44
45
46
{
"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": "matthew@weierophinney.net",
"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": "~0.2"
},
"require-dev": {
"phpunit/PHPUnit": "3.7.*",
"squizlabs/php_codesniffer": "1.5.*"
},
"autoload": {
"psr-4": {
"Phly\\Http\\": "src/",
"PhlyTest\\Http\\": "test/"
}
},
"autoload-dev": {
"files": [
"test/TestAsset/Functions.php"
]
}
}