-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
82 lines (80 loc) · 2.24 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "xsanisty/silexstarter",
"description": "A starter application based on Silex framework",
"license": "MIT",
"keywords": ["framework", "silex", "mvc", "eloquent", "twig", "silex starter", "silex dashboard"],
"authors": [
{
"name" : "Ikhsan Agustian",
"email" : "[email protected]"
},
{
"name" : "Xsanisty Dev Team",
"email" : "[email protected]"
}
],
"repositories" : [
{
"type" : "vcs",
"url" : "https://github.com/xsanisty/EloquentDataTable"
},
{
"type" : "vcs",
"url" : "https://github.com/xsanisty/SilexStarter-Core"
},
{
"type" : "vcs",
"url" : "https://github.com/xsanisty/SilexStarter-Dashboard"
},
{
"type" : "vcs",
"url" : "https://github.com/xsanisty/SilexStarter-Datatable"
},
{
"type" : "vcs",
"url" : "https://github.com/xsanisty/SilexStarter-ModuleManager"
},
{
"type" : "vcs",
"url" : "https://github.com/xsanisty/SilexStarter-UserManager"
}
],
"require": {
"xsanisty/silexstarter-core" : "dev-develop",
"xsanisty/silexstarter-dashboard" : "dev-develop",
"xsanisty/silexstarter-datatable" : "dev-develop",
"xsanisty/silexstarter-usermanager" : "dev-develop",
"xsanisty/silexstarter-modulemanager" : "dev-develop"
},
"require-dev": {
"silex/web-profiler" : "~1.0",
"filp/whoops" : "~2.0",
"phpunit/phpunit" : "4.*",
"symfony/var-dumper" : "*"
},
"autoload": {
"psr-4": {
"" : [
"app/modules/",
"tests/",
"src"
]
}
},
"scripts": {
"post-install-cmd": [
"chmod -R 777 app/storage"
],
"post-update-cmd": [
"php xpress cache:clear"
],
"post-create-project-cmd": [
"chmod -R 777 app/storage",
"php xpress module:publish-asset"
]
},
"config": {
"preferred-install": "dist"
},
"minimum-stability": "stable"
}