-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.68 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.68 KB
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
{
"name": "plugowski/php_sandbox",
"description": "Simple sandbox to quick evaluation php code.",
"authors": [
{
"name": "Paweł Ługowski",
"email": "pawelugowski@gmail.com"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/plugowski/kint.git"
}
],
"require": {
"plugowski/php_router": "1.0",
"kint-php/kint": "2.*",
"composer/composer": "1.4.2",
"robintail/ace-builds": "1.2.*",
"components/jquery": "2.2.4",
"components/bootstrap": "3.3.2",
"makeusabrew/bootbox": "v4.x-dev",
"snapappointments/bootstrap-select": "1.13.5",
"fortawesome/font-awesome": "4.*",
"php": ">=5.6",
"ebernhardson/fastcgi": "0.2.*"
},
"require-dev": {
"phpunit/phpunit": "4.8.9"
},
"autoload": {
"psr-4": {
"PhpSandbox\\": "src/"
}
},
"scripts": {
"post-update-cmd": [
"cp -R vendor/components/bootstrap/css/* webroot/css/",
"cp -R vendor/components/bootstrap/js/* webroot/js/",
"cp -R vendor/makeusabrew/bootbox/bootbox.js webroot/js/",
"mkdir -p webroot/js/ace",
"cp vendor/components/jquery/jquery.min.js webroot/js/",
"cp -R vendor/robintail/ace-builds/src/* webroot/js/ace/",
"cp -R vendor/fortawesome/font-awesome/css/* webroot/css/",
"cp -R vendor/fortawesome/font-awesome/fonts webroot/fonts/",
"cp -R vendor/snapappointments/bootstrap-select/dist/* webroot/",
"mkdir -p tmp/snippets",
"mkdir -p tmp/vendor"
]
}
}