forked from asika32764/http
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
26 lines (26 loc) · 763 Bytes
/
composer.json
File metadata and controls
26 lines (26 loc) · 763 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
{
"name": "jr-cobweb/http",
"description": "PSR HTTP Message implementations. (PHP 5.3 Compatible)",
"keywords": ["asika", "psr7", "uri", "http", "request", "response", "client", "restful", "stream"],
"homepage": "https://github.com/asika32764/asika-http",
"license": "LGPL-2.0+",
"require": {
"php": ">=5.3.3",
"psr/http-message": "1.*",
"windwalker/uri": "~2.0"
},
"require-dev": {
"windwalker/environment": "~2.0",
"windwalker/test": "~2.0"
},
"minimum-stability": "beta",
"autoload": {
"psr-4": {
"Asika\\Http\\": "src",
"Asika\\Http\\Test\\": "test"
}
},
"provide": {
"psr/http-message-implementation": "~1.0"
}
}