-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1.41 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
{
"name": "garrettw/pimf-transphporm",
"description": "A skeleton app using the PIMF framework with the Transphporm template engine",
"type": "project",
"keywords": ["pimf", "framework", "skeleton", "app", "transphporm"],
"license": "Unlicense",
"authors": [
{
"name" : "Gjero Krsteski",
"email" : "[email protected]",
"homepage" : "http://krsteski.de",
"role" : "Lead Developer"
},
{
"name": "Garrett Whitehorn",
"email": "[email protected]",
"homepage": "http://garrettw.net/",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/gjerokrsteski/pimf-framework/issues",
"wiki": "https://github.com/gjerokrsteski/pimf-framework/wiki",
"source": "https://github.com/gjerokrsteski/pimf-framework"
},
"scripts": {
"post-root-package-install": [
"git submodule --quiet sync",
"git submodule --quiet update --remote --force --init --recursive",
"cp composer.phar Transphporm/composer.phar",
"cd Transphporm/",
"php composer.phar install",
"cd ..",
"@php pimf core:init"
],
"post-update-cmd": [
"git submodule --quiet sync",
"git submodule --quiet update --remote --force --init --recursive"
]
}
}