-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 999 Bytes
/
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
{
"name": "dionchaika/http",
"description": "The PSR HTTP Library",
"keywords": [
"php",
"psr",
"psr-7",
"psr-17",
"psr-15",
"psr-18",
"http",
"http-message",
"http-factory",
"http-server-handler",
"http-server-middleware",
"http-client"
],
"homepage": "https://github.com/dionchaika/http",
"version": "v1.0.0",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Dion Chaika",
"email": "dionchaika@gmail.com"
}
],
"autoload": {
"psr-4": {
"Dionchaika\\Http\\": "src/"
}
},
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"php": "^7.1.3",
"psr/http-message": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0",
"psr/http-client": "^1.0"
}
}