This repository was archived by the owner on Sep 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.38 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.38 KB
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
{
"name" : "hoa/http",
"description": "The Hoa\\Http library.",
"type" : "library",
"keywords" : ["library", "http", "request", "response", "runtime",
"rfc2295", "rfc2324", "rfc2518", "rfc2774", "rfc3229",
"rfc4918", "rfc5842", "rfc6585", "rfc7231", "rfc7232",
"rfc7233", "rfc7235", "rfc7237"],
"homepage" : "https://hoa-project.net/",
"license" : "BSD-3-Clause",
"authors" : [
{
"name" : "Ivan Enderlin",
"email": "ivan.enderlin@hoa-project.net"
},
{
"name" : "Hoa community",
"homepage": "https://hoa-project.net/"
}
],
"support": {
"email" : "support@hoa-project.net",
"irc" : "irc://chat.freenode.net/hoaproject",
"forum" : "https://users.hoa-project.net/",
"docs" : "https://central.hoa-project.net/Documentation/Library/Http",
"source": "https://central.hoa-project.net/Resource/Library/Http"
},
"require": {
"php" : ">=7.1",
"hoa/consistency": "dev-master",
"hoa/exception" : "dev-master",
"hoa/stream" : "dev-master"
},
"autoload": {
"psr-4": {
"Hoa\\Http\\": "Source"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
}
}