-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
31 lines (31 loc) · 970 Bytes
/
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
{
"name": "vendor/studiolo-web",
"description": "Description of project Studiolo",
"authors": [
{
"name": "Francesco Posa",
"email": "[email protected]"
}
],
"require": {
"twbs/bootstrap": "^4.4",
"components/jquery": "^3.4"
},
"autoload": {
"psr-4": {
"View\\": "View/",
"Model\\": "Model/",
"Controller\\": "Controller/"
}
},
"scripts": {
"post-update-cmd": [
"rm -f resources/css/bootstrap.min.css",
"rm -f resources/js/bootstrap.min.js",
"rm -f resources/js/jquery.min.js",
"cp vendor/twbs/bootstrap/dist/css/bootstrap.min.css resources/css/bootstrap.min.css",
"cp vendor/twbs/bootstrap/dist/js/bootstrap.min.js resources/js/bootstrap.min.js",
"cp vendor/components/jquery/jquery.min.js resources/js/jquery.min.js"
]
}
}