-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (43 loc) · 1.08 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
{
"name": "ixa/wordpress-starter",
"description": "WordPress starter project that works with Composer",
"type" : "project",
"repositories" : [
{
"type":"composer",
"url":"http://wpackagist.org"
}
],
"require": {
"php": ">5.3",
"ixa/wordpress-core": "~3.8",
"incenteev/composer-parameter-handler": "~2.0",
"ixa/wp-config": "~0.2"
},
"require-dev":{
"wp-cli/wp-cli": "~0.14.0"
},
"license": "GPL-2.0+",
"authors": [
{
"name": "cesarhdz",
"email": "[email protected]"
}
],
"scripts": {
"post-install-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters"
],
"post-update-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters"
]
},
"extra": {
"incenteev-parameters": {
"file": "config/.env.yml"
},
"installer-paths": {
"app/plugins/{$name}/": ["type:wordpress-plugin"]
}
}
}