-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 1.57 KB
/
composer.json
File metadata and controls
60 lines (60 loc) · 1.57 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "vection-framework/http",
"description": "The Vection HTTP Kernel is a processor with middleware support.",
"type": "library",
"keywords": [
"component",
"framework",
"http",
"library",
"middleware",
"php",
"processor",
"request",
"response",
"stack",
"vection"
],
"homepage": "https://vection.appsdock.org",
"readme": "README.md",
"license": "MIT",
"authors": [
{
"name": "David M. Lung",
"email": "david.lung@appsdock.de"
},
{
"name": "David Brucksch",
"email": "david.brucksch@appsdock.de"
}
],
"support": {
"chat": "https://discord.gg/ZhPaXkccpg",
"docs": "https://github.com/Vection-Framework/HTTP/blob/master/README.md",
"email": "vection@appsdock.de",
"issues": "https://github.com/Vection-Framework/HTTP/issues",
"source": "https://github.com/Vection-Framework/HTTP/"
},
"funding": [
{
"type": "ko-fi",
"url": "https://ko-fi.com/vection"
}
],
"require": {
"ext-curl": "*",
"php": "^8.1",
"psr/http-client": "^1.0",
"psr/http-message": "^1.0",
"psr/http-server-handler": "^1.0",
"psr/log": "^1.1",
"vection-framework/common": "v0.*",
"vection-framework/contracts": "v0.*"
},
"autoload": {
"psr-4": {
"Vection\\Component\\Http\\": "./"
}
},
"minimum-stability": "stable"
}