-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
31 lines (31 loc) · 932 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
{
"name": "platform/platform-wordpress",
"description": "WordPress for Platform.sh",
"license": "GPL-2.0+",
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"require": {
"johnpbloch/wordpress-core-installer": "^1.0 || ^2.0",
"johnpbloch/wordpress": "6.6.2",
"johnpbloch/wordpress-core": "6.6.2",
"wp-cli/wp-cli-bundle": "^2.5",
"psy/psysh": "^0.10.9"
},
"extra": {
"wordpress-install-dir": "web/wp",
"installer-paths": {
"web/wp-content/plugins/{$name}": ["type:wordpress-plugin"],
"web/wp-content/themes/{$name}": ["type:wordpress-theme"],
"web/wp-content/mu-plugins/{$name}": ["type:wordpress-muplugin"]
}
},
"config": {
"allow-plugins": {
"johnpbloch/wordpress-core-installer": true
}
}
}