forked from anttiviljami/wordpress-heroku-docker-project
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
50 lines (50 loc) · 1.27 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
45
46
47
48
49
50
{
"name": "mitramejia/wordpress-project",
"description": "WordPress project template for Heroku and local Docker",
"type": "project",
"license": "GPLv3",
"authors": [
{
"name": "Mitra Mejía",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
},
{
"type": "composer",
"url": "https://wp-languages.github.io"
}
],
"require": {
"php": ">=7.0",
"ext-gd": "*",
"ext-redis": "*",
"johnpbloch/wordpress": "*",
"composer/installers": "v1.0.12",
"vlucas/phpdotenv": "^2.0.1",
"oscarotero/env": "^1.0",
"wp-cli/wp-cli" : "*",
"wpackagist-theme/twentyseventeen": "*",
"humanmade/s3-uploads": "*"
},
"require-dev": {
"heroku/heroku-buildpack-php": "*"
},
"extra": {
"installer-paths": {
"htdocs/wp-content/plugins/{$name}/": ["type:wordpress-plugin"],
"htdocs/wp-content/mu-plugins/{$name}/": ["type:wordpress-muplugin"],
"htdocs/wp-content/themes/{$name}": ["type:wordpress-theme"]
},
"wordpress-install-dir": "htdocs/wordpress"
},
"scripts": {
"post-install-cmd": [
"/bin/bash -c \"rm -r htdocs/wordpress/wp-content; ln -s ../wp-content htdocs/wordpress/wp-content\""
]
}
}