-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
85 lines (85 loc) · 2.26 KB
/
Copy pathcomposer.json
File metadata and controls
85 lines (85 loc) · 2.26 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "trueasync/http-server",
"description": "High-performance HTTP/1.1/2/3 server with TrueAsync integration",
"type": "php-ext",
"license": "PHP-3.01",
"keywords": [
"http",
"http2",
"http3",
"server",
"async",
"trueasync",
"extension"
],
"authors": [
{
"name": "Edmond",
"email": "edmond@example.com"
}
],
"require": {
"php": "^8.2"
},
"require-dev": {
"phpunit/phpunit": "^10.0"
},
"php-ext": {
"extension-name": "http_server",
"priority": 30,
"support-zts": true,
"support-nts": true,
"configure-options": [
{
"name": "enable-http-server",
"description": "Enable HTTP server support",
"needs-value": false
},
{
"name": "enable-http2",
"description": "Enable HTTP/2 support (requires nghttp2)",
"needs-value": false
},
{
"name": "enable-http3",
"description": "Enable HTTP/3 support (requires ngtcp2 and nghttp3)",
"needs-value": false
},
{
"name": "with-nghttp2",
"description": "Path to nghttp2 library",
"needs-value": true
},
{
"name": "with-ngtcp2",
"description": "Path to ngtcp2 library",
"needs-value": true
},
{
"name": "with-nghttp3",
"description": "Path to nghttp3 library",
"needs-value": true
},
{
"name": "enable-tests",
"description": "Build unit tests (requires CMocka)",
"needs-value": false
},
{
"name": "enable-coverage",
"description": "Enable code coverage (requires gcov)",
"needs-value": false
}
]
},
"autoload": {
"psr-4": {
"TrueAsync\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TrueAsync\\Tests\\": "tests/"
}
}
}