-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
executable file
·60 lines (60 loc) · 1.5 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
{
"name": "pradosoft/prado-demos",
"description": "Prado demos",
"homepage": "https://github.com/pradosoft/prado-demos",
"license" : "BSD-3-Clause",
"authors": [
{
"name": "Ciro Mattia Gonano",
"email": "ciromattia@gmail.com",
"role" : "Github/Packagist Maintainer"
},
{
"name": "Daniel Sampedro",
"email": "darthdaniel85@gmail.com",
"role" : "Developer"
},
{
"name": "David Otto",
"role" : "Developer"
},
{
"name": "Fabio Bas",
"email": "ctrlaltca@gmail.com",
"role" : "Developer"
},
{
"name": "Jens Klaer",
"email": "kj.landwehr.software@gmail.com",
"role" : "Developer"
}
],
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"require": {
"pradosoft/prado": "^4",
"zf1/zend-search-lucene": "~1.12"
},
"scripts": {
"post-install-cmd": [
"chmod 777 */assets",
"chmod 777 */protected/runtime",
"chmod -R 777 chat/protected/App_Code",
"chmod -R 777 quickstart/protected/index/quickstart",
"chmod -R 777 time-tracker/protected/App_Data/SQLite",
"chmod -R 777 vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Serializer"
],
"post-update-cmd": [
"chmod 777 */assets",
"chmod 777 */protected/runtime",
"chmod -R 777 chat/protected/App_Code",
"chmod -R 777 quickstart/protected/index/quickstart",
"chmod -R 777 time-tracker/protected/App_Data/SQLite",
"chmod -R 777 vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Serializer"
]
}
}