-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
54 lines (54 loc) · 1.16 KB
/
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
{
"name": "igniphp/network",
"description": "PHP swoole based http server",
"keywords": [
"swoole",
"http",
"server",
"psr-7",
"psr-15"
],
"support": {
"issues": "https://github.com/igniphp/network/issues"
},
"license": "MIT",
"authors": [
{
"name": "Dawid <krac> Kraczkowski",
"email": "[email protected]"
}
],
"scripts": {
"phpstan": "vendor/bin/phpstan analyse src --level=0",
"coverage": "vendor/bin/phpunit --coverage-html ./coverage"
},
"require": {
"ext-swoole": ">=4.0.0",
"igniphp/exception": ">=1.0",
"php": ">=7.1.0",
"psr/http-factory": ">=1.0",
"psr/http-message": ">=1.0",
"psr/http-server-middleware": ">=1.0",
"psr/log": ">=1.0",
"zendframework/zend-diactoros": ">=1.7",
"zendframework/zend-httphandlerrunner": "^1.0"
},
"require-dev": {
"mockery/mockery": ">=1.0.0",
"phpstan/phpstan": ">=0.9.2",
"phpunit/phpunit": ">=7.0.0"
},
"autoload": {
"psr-4": {
"Igni\\Network\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Igni\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
}
}