-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (40 loc) · 1.03 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
{
"name": "(#composer_project#)",
"license": "(#composer_license#)",
"authors": [
{
"name": "(#composer_author_name#)",
"email": "(#composer_author_email#)"
}
],
"minimum-stability" : "stable",
"repositories": [
{
"type":"composer",
"url":"https://wpackagist.org"
},
{
"type":"composer",
"url":"https://packagist.org"
}
],
"require": {
"composer/installers": "~1.0",
"johnpbloch/wordpress": "^4.9.0",
"helsingborg-stad/modularity": ">=2.0.0",
"helsingborg-stad/municipio": ">=1.0.0"
},
"extra": {
"path": "/",
"wordpress-install-dir": "wp",
"installer-paths": {
"wp-content/plugins/{$name}": ["type:wordpress-plugin"],
"wp-content/themes/{$name}": ["type:wordpress-theme"]
}
},
"scripts": {
"post-install-cmd": [
"mkdir -p wp-content/uploads/cache/blade-cache"
]
}
}