-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 918 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
37
38
39
40
41
{
"name": "makise-co/pool",
"description": "Swoole Connection Pool",
"type": "library",
"license": "MIT",
"keywords": [
"swoole",
"connection",
"pool"
],
"authors": [
{
"name": "Dmitry K.",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.4",
"ext-swoole": ">=4.4",
"makise-co/connection": "^1.0",
"makise-co/ev-primitives": "^1.0"
},
"require-dev": {
"swoole/ide-helper": "^4.5",
"phpunit/phpunit": "^9.3",
"symfony/var-dumper": "^5.0",
"phpstan/phpstan": "^0.12.38"
},
"autoload": {
"psr-4": {
"MakiseCo\\Pool\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MakiseCo\\Pool\\Tests\\": "tests/"
}
}
}