forked from pradosoft/prado-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 855 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
32
33
34
35
36
37
38
{
"name": "pradosoft/prado-app",
"type": "project",
"description": "Prado 4 basic application project",
"license" : "proprietary",
"authors": [
{
"name": "Author Name",
"email": "[email protected]",
"role" : "Developer"
}
],
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"require": {
"pradosoft/prado": "^4",
"bower-asset/bootstrap": "^5"
},
"config": {
"vendor-dir": "protected/vendor"
},
"scripts": {
"post-install-cmd": [
"chmod 777 assets",
"chmod 777 protected/runtime",
"chmod 777 protected/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Serializer"
],
"post-update-cmd": [
"chmod 777 assets",
"chmod 777 protected/runtime",
"chmod 777 protected/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Serializer"
]
}
}