-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·38 lines (37 loc) · 978 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": "hos/hos-framework",
"description": "Framework for Fast Developpement for PHP",
"keywords": [ "daehl", "hos", "framework" ],
"homepage": "https://github.com/daehl/hos-framework",
"type": "library",
"license": "CC0 1.0",
"authors": [
{
"name": "Maxime Allanic",
"email": "[email protected]"
}
],
"autoload": {
"psr-4":{
"Hos\\": "src/"
}
},
"scripts": {
"generate-js-api-angular": ["Hos\\Command\\GenerateJSApi::execute"],
"post-package-install": [
"mkdir app",
"mkdir app/log",
"mkdir app/conf",
"mkdir asset",
"cp vendor/daehl/hos-framework/web/schema.xml app/conf/schema.xml"
],
"build-sql": [
"Hos\\Command\\BuildSQL::execute"
],
"push": [
"Hos\\Command\\Push::execute"
]
},
"require": {
}
}