forked from g4code/http
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (34 loc) · 772 Bytes
/
composer.json
File metadata and controls
35 lines (34 loc) · 772 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
{
"name": "g4/http",
"description": "g4 http request and response objects, for now taken and edited from ZF1",
"keywords": [
"http",
"request",
"response"
],
"license": "MIT",
"authors": [
{
"name": "Dejan Samardzija",
"email": "samardzija.dejan@gmail.com"
},
{
"name": "Drasko Gomboc",
"email": "drasko.gomboc@gmail.com"
},
{
"name": "Ivan Krickovic",
"email": "ivan.krickovic@gmail.com"
}
],
"autoload": {
"psr-4": {"G4\\Http\\": "src/"}
},
"require-dev": {
},
"require": {
"php": ">=5.3.3",
"g4/constants" : "*",
"g4/value-object" : "*"
}
}