-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
36 lines (36 loc) · 851 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
{
"name": "toknot/php-epoll",
"description": "PHP bindings to the linux epoll C API.",
"keywords": [
"php",
"ffi",
"epoll",
"events",
"asynchronous"
],
"homepage": "http://toknot.com",
"license": "BSD-3-Clause",
"version": "0.2.1",
"authors": [
{
"name": "Szopen Xiao",
"email": "[email protected]",
"homepage": "http://toknot.com",
"role": "Founder"
}
],
"support": {
"issues": "https://github.com/chopins/php-epoll/issues?state=open",
"source": "https://github.com/chopins/php-epoll"
},
"require": {
"php": ">=7.4.0",
"ext-ffi": "*",
"toknot/ffi-extend" : ">=0.1.5"
},
"autoload": {
"psr-4": {
"Toknot\\": "src/"
}
}
}