forked from pelletiermaxime/chef-webui-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
80 lines (80 loc) · 1.68 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": "laravel/laravel",
"description": "The Laravel Framework.",
"keywords": ["framework", "laravel"],
"license": "MIT",
"require": {
"laravel/framework": "4.2.*"
,"jenssegers/chef": "dev-master"
,"vakata/jstree": "3.0.*"
,"components/bootstrap": "3.3.*"
,"javve/list.js": "1.1.*"
,"barryvdh/laravel-debugbar": "1.*"
},
"require-dev": {
"behat/behat": "3.*"
,"behat/mink": "~1.6"
,"behat/mink-extension": "~2.0"
,"behat/mink-goutte-driver": "~1.1"
,"behat/mink-selenium2-driver": "~1.2"
,"behat/mink-zombie-driver": "~1.2"
,"phpunit/phpunit": "~4.3"
,"way/generators": "~2.0"
,"barryvdh/laravel-ide-helper": "1.*"
,"doctrine/dbal": "~2.4"
},
"autoload": {
"classmap": [
"app/commands",
"app/controllers",
"app/models",
"app/database/migrations",
"app/database/seeds",
"app/tests/TestCase.php"
]
},
"scripts": {
"post-install-cmd": [
"php artisan clear-compiled"
,"php artisan optimize"
],
"post-update-cmd": [
"php artisan clear-compiled"
,"php artisan ide-helper:generate"
,"php artisan optimize"
],
"post-create-project-cmd": [
"php artisan key:generate"
]
},
"config": {
"preferred-install": "dist",
"component-dir": "public/components"
},
"repositories": [
{
"type": "package",
"package": {
"name": "javve/list.js",
"type": "component",
"version": "1.1.1",
"source": {
"url": "https://github.com/javve/list.js.git",
"type": "git",
"reference": "1.1.1"
},
"extra": {
"component": {
"scripts": [
"dist/list.min.js"
]
}
},
"require": {
"robloach/component-installer": "*"
}
}
}
],
"minimum-stability": "stable"
}