-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 1.01 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
{
"name": "vagrant-wordpress-dev-enviroment",
"description": "a Vagrant configuration designed for development of WordPress plugins, themes, or websites",
"type": "project",
"minimum-stability": "stable",
"config": {
"preferred-install": "dist"
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"require": {
"composer/installers": "~1.0.12",
"wpackagist-plugin/akismet": "4.0.8",
"wpackagist-plugin/contact-form-7": "5.0.4",
"wpackagist-plugin/svg-support": "2.3.15",
"wpackagist-plugin/advanced-custom-fields": "5.7.7",
"wpackagist-plugin/advanced-custom-fields-font-awesome": "2.1.2",
"wpackagist-plugin/jquery-validation-for-contact-form-7": "4.1",
"johnpbloch/wordpress": "4.9.8"
},
"extra": {
"installer-paths": {
"wp-content/plugins/{$name}/": [
"type:wordpress-plugin"
],
"wp-content/themes/{$name}/": [
"type:wordpress-theme"
]
},
"wordpress-install-dir": "wp"
}
}