-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
26 lines (26 loc) · 754 Bytes
/
composer.json
File metadata and controls
26 lines (26 loc) · 754 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
{
"name": "leeshan87/reactphp-multi-loop",
"description": "Manage multiple LoopInterfaces easily when writing tests.",
"keywords": ["ReactPHP", "async", "testing", "multiLoop"],
"homepage": "https://github.com/leeshan87/reactphp-multi-loop",
"license": "MIT",
"authors": [
{
"name": "Zoltán Toma",
"email": "leeshan87@gmail.com"
}
],
"autoload": {
"psr-4" : { "LeeShan87\\React\\MultiLoop\\": "src/" }
},
"autoload-dev": {
"psr-4": { "LeeShan87\\Tests\\React\\MultiLoop\\": "tests/" }
},
"require": {
"php": ">=5.5",
"react/event-loop": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35"
}
}