-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathcomposer.json
executable file
·54 lines (54 loc) · 1.29 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": "fastd/fastd",
"type": "library",
"license": "MIT",
"description": "The FastD High Performance API Framework",
"minimum-stability": "stable",
"keywords": ["Framework", "API", "Swoole", "FastD"],
"homepage": "https://fastdlabs.com",
"authors": [
{
"name": "janhuang",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"FastD\\": "src"
},
"files": [
"helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"": "app/src"
}
},
"require": {
"php": ">=5.6",
"fastd/container": "^3.0",
"fastd/http": "^3.0",
"fastd/middleware": "^1.0",
"fastd/config": "^3.2",
"fastd/routing": "^3.0",
"fastd/swoole": "^2.0",
"fastd/testing": "^0.3",
"fastd/migration": "^0.1",
"fastd/query-builder": "^2.0",
"catfan/medoo": "^1.2",
"symfony/cache": "^3.0",
"monolog/monolog": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^5.0",
"phpunit/dbunit": "^2.0",
"symfony/http-foundation": "^3.0"
},
"bin": [
"bin/console",
"bin/client",
"bin/server",
"bin/process"
]
}