-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
41 lines (41 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
{
"name": "versionpress/pedestal",
"type": "project",
"license": "MIT",
"description": "A Composer-based WordPress stack. For testing purpose only. Inspired by Bedrock.",
"homepage": "https://versionpress.net",
"authors": [
{
"name": "Jan Voracek",
"email": "jan@voracek.net",
"homepage": "https://github.com/janvoracek"
}
],
"scripts": {
"pre-update-cmd": "wp vp-composer prepare-for-composer-changes",
"post-update-cmd": "wp vp-composer commit-composer-changes"
},
"config": {
"preferred-install": "dist"
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"require": {
"php": ">=5.6",
"composer/installers": "~1.0.12",
"johnpbloch/wordpress": "4.5.1",
"wpackagist-theme/twentysixteen": "^1.2"
},
"extra": {
"installer-paths": {
"web/app/mu-plugins/{$name}/": ["type:wordpress-muplugin"],
"web/app/plugins/{$name}/": ["type:wordpress-plugin"],
"web/app/themes/{$name}/": ["type:wordpress-theme"]
},
"wordpress-install-dir": "web/wp"
}
}