-
Notifications
You must be signed in to change notification settings - Fork 124
/
composer.json
55 lines (55 loc) · 1012 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "swlib/saber",
"type": "library",
"keywords": [
"php",
"swoole",
"http",
"client",
"psr7",
"coroutine",
"axios",
"ajax",
"requests",
"curl"
],
"description": "Swoole coroutine HTTP client",
"license": "Apache-2.0",
"authors": [
{
"name": "twosee",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/swlib/saber/issues"
},
"require": {
"php": ">=7.1",
"swlib/http": "^1.0",
"swlib/util": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "~7"
},
"autoload": {
"classmap": [
"src/Saber.php",
"src/SaberGM.php"
],
"psr-4": {
"Swlib\\Saber\\": "src"
},
"files": [
"src/include/functions.php"
]
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"scripts": {
"test": "php ./tests/phpunit -c ./tests/phpunit.xml",
"install-test": "php --ri swoole && composer install && composer test"
}
}