forked from igniphp/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
62 lines (62 loc) · 1.38 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
55
56
57
58
59
60
61
62
{
"name": "igniphp/framework",
"description": "Swoole, PSR-7, PSR-15 modular micro anti-framework.",
"keywords": [
"swoole",
"http",
"psr-7",
"psr-15",
"middleware",
"micro",
"framework"
],
"support": {
"issues": "https://github.com/igniphp/framework/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": {
"php": ">=7.1.0",
"igniphp/container": ">=1.1.0",
"igniphp/exception": ">=1.0",
"psr/container": ">=1.0",
"psr/http-message": ">=1.0",
"psr/http-server-middleware": ">=1.0",
"psr/log": ">=1.0",
"psr/simple-cache": ">=1.0",
"symfony/routing": ">=4.1",
"zendframework/zend-diactoros": ">=1.7",
"zendframework/zend-httphandlerrunner": "^1.0"
},
"suggest": {
"ext-swoole": "for build in http server support."
},
"require-dev": {
"mockery/mockery": ">=1.0.0",
"league/container": ">=1.0.0",
"phpstan/phpstan": ">=0.9.2",
"phpunit/phpunit": ">=7.0.0"
},
"autoload": {
"psr-4": {
"Igni\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Igni\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
}
}