-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (58 loc) · 1.52 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
{
"name": "atillay/wordpress-starter",
"description": "WordPress starter",
"require": {
"vlucas/phpdotenv": "~2.4",
"drupal-composer/preserve-paths": "0.1.*",
"johnpbloch/wordpress": "~5.0",
"advanced-custom-fields-pro": "dev-master",
"wpackagist-plugin/force-regenerate-thumbnails": "^2.0",
"wpackagist-plugin/wordpress-importer": "^0.6.4",
"wpackagist-plugin/wp-exporter": "^0.0.6"
},
"scripts": {
"clean": [
"rm -rf public/wp-content/themes/twenty*",
"rm -rf public/wp-content/plugins/hello.php",
"rm -rf public/wp-content/plugins/akismet"
],
"post-install-cmd": [
"@clean"
],
"post-update-cmd": [
"@clean"
]
},
"extra": {
"wordpress-install-dir": "public",
"installer-paths": {
"public/wp-content/plugins/{$name}/": ["type:wordpress-plugin"],
"public/wp-content/themes/{$name}/": ["type:wordpress-theme"]
},
"preserve-paths": [
"public/wp-config.php",
"public/.htaccess",
"public/wp-content/uploads",
"public/wp-content/themes/custom"
]
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
},
{
"type": "package",
"package": {
"name": "advanced-custom-fields-pro",
"type": "wordpress-plugin",
"version": "master",
"dist": {
"type": "zip",
"url": "https://github.com/wp-premium/advanced-custom-fields-pro/archive/5.7.10.zip",
"reference": "master"
}
}
}
]
}