-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
composer.json
109 lines (109 loc) · 3.59 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "ngmy/webloyer",
"description": "Webloyer is a Web UI for managing Deployer deployments",
"keywords": ["deployer", "deploy", "deployment"],
"license": "MIT",
"authors": [
{
"name": "Yuta Nagamiya",
"email": "[email protected]"
}
],
"type": "project",
"repositories": [
{
"type": "package",
"package": {
"name": "ajaxorg/ace-builds",
"version": "1.2.0",
"source": {
"url": "https://github.com/ajaxorg/ace-builds.git",
"type": "git",
"reference": "v1.2.0"
}
}
},
{
"type": "package",
"package": {
"name": "lou/multi-select",
"version": "0.9.12",
"source": {
"url": "https://github.com/lou/multi-select.git",
"type": "git",
"reference": "0.9.12"
}
}
},
{
"type": "vcs",
"url": "https://github.com/matasarei/JsonRPC.git"
}
],
"require": {
"php": ">=5.6.0",
"laravel/framework": "5.2.*",
"laravelcollective/html": "5.2.*",
"davejamesmiller/laravel-breadcrumbs": "3.0.*",
"robclancy/presenter": "1.3.*",
"ajaxorg/ace-builds": "~1.2.0",
"lou/multi-select": "0.9.12",
"kodeine/laravel-acl": "~1.0@dev",
"sensiolabs/ansi-to-html": "~1.0",
"symfony/yaml": "~3.0",
"ngmy/eloquent-serialized-lob": "^0.1.0",
"fguillot/json-rpc": "~v1.2.1",
"deployer/deployer": "^4.0"
},
"require-dev": {
"phpunit/phpunit": "~5.0",
"symfony/dom-crawler": "~3.0",
"symfony/css-selector": "~3.0",
"mockery/mockery": "dev-master",
"mikey179/vfsstream": "~1",
"php-coveralls/php-coveralls": "^2.2"
},
"autoload": {
"classmap": [
"database"
],
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php",
"tests/_helpers"
]
},
"scripts": {
"post-install-cmd": [
"mkdir -p public/js/vendor/ajaxorg",
"ln -nfs $(pwd)/vendor/ajaxorg/ace-builds/src-min-noconflict public/js/vendor/ajaxorg/ace",
"mkdir -p public/vendor/lou/multi-select",
"cp -r $(pwd)/vendor/lou/multi-select/js public/vendor/lou/multi-select",
"cp -r $(pwd)/vendor/lou/multi-select/css public/vendor/lou/multi-select",
"cp -r $(pwd)/vendor/lou/multi-select/img public/vendor/lou/multi-select",
"php artisan clear-compiled",
"php artisan optimize"
],
"post-update-cmd": [
"mkdir -p public/js/vendor/ajaxorg",
"ln -nfs $(pwd)/vendor/ajaxorg/ace-builds/src-min-noconflict public/js/vendor/ajaxorg/ace",
"mkdir -p public/vendor/lou/multi-select",
"cp -r $(pwd)/vendor/lou/multi-select/js public/vendor/lou/multi-select",
"cp -r $(pwd)/vendor/lou/multi-select/css public/vendor/lou/multi-select",
"cp -r $(pwd)/vendor/lou/multi-select/img public/vendor/lou/multi-select",
"php artisan clear-compiled",
"php artisan optimize"
],
"post-create-project-cmd": [
"php -r \"copy('.env.example', '.env');\"",
"php artisan key:generate"
]
},
"config": {
"preferred-install": "dist"
}
}