-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
59 lines (58 loc) · 1.88 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
51
52
53
54
55
56
57
58
59
{
"name": "designyourcode/wp-install",
"description": "Install WordPress with Composer.",
"license": "MIT",
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"require": {
"php": ">=5.4",
"ext-gd": "*",
"ext-redis": "*",
"composer/installers": "@stable",
"mustangostang/spyc": "dev-master",
"incenteev/composer-parameter-handler": "dev-master",
"johnpbloch/wordpress-core-installer": "~0.2",
"johnpbloch/wordpress-core": "4.8.1",
"wpackagist-theme/twentysixteen": "1.2",
"wpackagist-plugin/timber-library": "dev-trunk",
"wpackagist-plugin/clear-cache-for-timber": "dev-trunk",
"wpackagist-plugin/amazon-s3-and-cloudfront": "dev-trunk",
"wpackagist-plugin/amazon-web-services": "dev-trunk",
"wpackagist-plugin/wordpress-importer": "dev-trunk",
"wpackagist-plugin/akismet": "dev-trunk",
"wpackagist-plugin/disable-wordpress-updates": "dev-trunk",
"wpackagist-plugin/wp-smtp-config": "dev-trunk"
},
"require-dev": {
"heroku/heroku-buildpack-php": "*"
},
"extra": {
"wordpress-install-dir": "wp",
"installer-paths": {
"wp-content/plugins/{$name}": [
"type:wordpress-plugin"
],
"wp-content/themes/{$name}": [
"type:wordpress-theme"
]
},
"incenteev-parameters": {
"file": "app/config/parameters.yml"
}
},
"scripts": {
"post-install-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters"
],
"compile": [
"rm -rf app/config/parameters.yml",
"php bin/redis-config.php",
"php bin/generate-salts.php"
]
},
"minimum-stability": "stable"
}