-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
executable file
·53 lines (53 loc) · 1.2 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
{
"name": "fastd/framework",
"type": "library",
"license": "MIT",
"description": "The fastd framework library.",
"minimum-stability": "stable",
"keywords": ["FastD Framework Kernel"],
"authors": [
{
"name": "janhuang",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"FastD\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"": "app/src/Bundles"
},
"files": [
"app/application.php"
]
},
"require": {
"php": ">=7.0",
"fastd/http": "~2.0.0",
"fastd/database": "~2.0.0",
"fastd/config": "~2.0.0",
"fastd/storage": "~2.0.0",
"fastd/console": "~2.0.0",
"fastd/routing": "~2.0.0",
"fastd/annotation": "~1.0.0",
"fastd/container": "~2.0.0",
"fastd/debug": "~2.0.0",
"fastd/packet": "~1.1.0",
"symfony/finder": "~3.0.0",
"twig/twig": "~1.2"
},
"require-dev": {
"phpunit/phpunit": "5.0"
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"bin": [
"console"
]
}