-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.07 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
{
"name": "gobline/application",
"description": "Gobline Application",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Mathieu Decaffmeyer",
"email": "mdecaffmeyer@gmail.com"
}
],
"keywords": [
"gobline",
"mvc", "mvc framework",
"hmvc", "hmvc framework",
"mvvm", "mvvm framework"
],
"homepage": "https://github.com/gobline",
"autoload": {
"psr-4": {
"Gobline\\Application\\": "src/"
}
},
"require": {
"php": ">=7.0.0",
"gobline/container": "^2.0",
"gobline/registrar": "^1.0",
"gobline/environment": "^1.0",
"gobline/router": "^3.0",
"gobline/filter": "^2.0",
"gobline/flash": "^2.0",
"gobline/auth": "^2.0",
"gobline/acl": "^2.0",
"gobline/view": "^4.0",
"filp/whoops": "^2.1",
"zendframework/zend-diactoros": "^1.2",
"relay/relay": "^1.0"
},
"extra": {
"branch-alias": {
"dev-master": "4.0.x-dev"
}
}
}