-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
80 lines (76 loc) · 2.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
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
{
"name": "capisso/vmpanel",
"require": {
"laravel/framework": "4.0.*",
"cartalyst/sentry": "2.0.*",
"cartalyst/api": "1.0.*",
"cartalyst/themes": "2.0.*",
"cartalyst/composite-config": "1.0.*",
"cartalyst/data-grid": "dev-master",
"cartalyst/assetic-filters": "1.0.*",
"jasonlewis/basset": "dev-master",
"lmammino/jsmin4assetic": "dev-master",
"natxet/CssMin": "dev-master",
"barryvdh/laravel-ide-helper": "1.*",
"phpids/phpids": "dev-master",
"rmccue/requests": ">=1.0",
"capisso/salty": "dev-master"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/Capisso/Salty.git"
},
{
"type": "vcs",
"url": "http://dl.capisso.org/repos/api.git"
},
{
"type": "vcs",
"url": "http://dl.capisso.org/repos/themes.git"
},
{
"type": "vcs",
"url": "http://dl.capisso.org/repos/composite-config.git"
},
{
"type": "vcs",
"url": "http://dl.capisso.org/repos/data-grid.git"
},
{
"type": "vcs",
"url": "http://dl.capisso.org/repos/assetic-filters.git"
},
{
"type": "vcs",
"url": "http://dl.capisso.org/repos/dependencies.git"
}
],
"autoload": {
"classmap": [
"app/commands",
"app/controllers",
"app/models",
"app/libraries",
"app/handlers",
"app/database/migrations",
"app/database/seeds",
"app/tests/TestCase.php"
]
},
"scripts": {
"pre-update-cmd": [
"php artisan clear-compiled || true"
],
"post-install-cmd": [
"php artisan optimize || true"
],
"post-update-cmd": [
"php artisan optimize || true"
]
},
"config": {
"preferred-install": "dist"
},
"minimum-stability": "dev"
}