-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 725 Bytes
/
Copy pathcomposer.json
File metadata and controls
30 lines (30 loc) · 725 Bytes
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
{
"name": "zwirek/react-timer-handler",
"type": "library",
"description": "Simple handler for ReactPHP timers",
"keywords": ["ReactPHP", "Timer", "react", "handler", "php", "async"],
"license": "MIT",
"authors": [
{
"name": "Zbigniew Żwirek",
"email": "github.srv@zwirek.net"
}
],
"autoload": {
"psr-4": {
"Zwirek\\React\\Timer\\Handler\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Zwirek\\React\\Timer\\Handler\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.1",
"react/event-loop": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^8.2"
}
}