forked from ataylorme/Advanced-WordPress-on-Pantheon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
70 lines (70 loc) · 1.71 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
60
61
62
63
64
65
66
67
68
69
70
{
"name": "Advanced-WordPress-on-Pantheon",
"description": "",
"version": "0.1.0",
"type": "project",
"keywords": [],
"minimum-stability": "dev",
"authors": [
{
"name": "Andrew Taylor",
"email": "[email protected]",
"homepage": "http://www.ataylor.me"
}
],
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
},
{
"type": "package",
"package": {
"name": "pantheon-systems/wordpress",
"version": "4.7.3",
"dist": {
"url": "https://github.com/pantheon-systems/WordPress/archive/4.7.3.zip",
"type": "zip"
},
"source": {
"url": "[email protected]:pantheon-systems/WordPress.git",
"type": "git",
"reference": "4.7.3"
},
"type": "wordpress-core",
"require": {
"johnpbloch/wordpress-core-installer": "~0.1"
},
"extra": {
"wordpress-install-dir": "web/wp"
}
}
}
],
"require": {
"php": ">=5.2",
"composer/installers": "~1.0",
"vlucas/phpdotenv": "^2.4.0",
"wpackagist-plugin/wp-native-php-sessions": "^0.6.0",
"wpackagist-plugin/pantheon-advanced-page-cache": "^0.1.4",
"wpackagist-plugin/wp-cfm": "^1.4.5",
"wpackagist-theme/twentyseventeen": "^1.1",
"pantheon-systems/wordpress": "^4.7.3",
"roots/wp-password-bcrypt": "^1.0.0"
},
"config": {
"vendor-dir": "vendor",
"preferred-install": "dist",
"secure-http": false
},
"extra": {
"installer-paths": {
"web/wp-content/plugins/{$name}/": [
"type:wordpress-plugin"
],
"web/wp-content/themes/{$name}/": [
"type:wordpress-theme"
]
}
}
}