-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·67 lines (67 loc) · 2.05 KB
/
composer.json
File metadata and controls
executable file
·67 lines (67 loc) · 2.05 KB
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
{
"name": "asha23/arlo-base-wordpress",
"type": "project",
"license": "MIT",
"description": "A Composer Framework to help you get WordPress up and running in around a minute",
"authors": [{
"name": "Ash Whiting",
"email": "ash_whiting@hotmail.com"
}],
"keywords": [
"Arlo", "wordpress framework", "base theme", "wordpress", "composer", "vagrant", "wp"
],
"repositories": {
"wp-packagist": {
"type": "composer",
"url": "https://wpackagist.org"
},
"theme": {
"type": "package",
"package": {
"name": "asha23/wp-seed",
"type": "wordpress-theme",
"version": "0.4.6",
"dist": {
"type": "zip",
"url": "https://github.com/asha23/wp-seed/archive/v0.4.6.zip"
}
}
},
"wp-sync-db": {
"type": "package",
"package": {
"name": "wp-sync-db/wp-sync-db",
"type": "wordpress-plugin",
"version": "1.6",
"dist": {
"type": "zip",
"url": "https://github.com/corysimmons/wp-sync-db/archive/1.6.zip"
}
}
}
},
"require": {
"php": ">=7.1",
"composer/installers": "~1.0.12",
"johnpbloch/wordpress": "*",
"vlucas/phpdotenv": "^2.0.1",
"oscarotero/env": "^1.0",
"wpackagist-plugin/tinymce-advanced": "*",
"wpackagist-plugin/acf-content-analysis-for-yoast-seo": "*",
"wpackagist-plugin/duplicate-post": "*",
"wpackagist-plugin/simple-image-sizes": "*",
"wpackagist-plugin/wordpress-seo": "*",
"wpackagist-plugin/wps-hide-login": "*",
"wpackagist-plugin/classic-editor":"*",
"wp-sync-db/wp-sync-db": "*",
"asha23/wp-seed": "*"
},
"extra": {
"installer-paths": {
"web/content/plugins/{$name}/": ["type:wordpress-plugin"],
"web/content/themes/{$name}/": ["type:wordpress-theme"]
},
"wordpress-install-dir": "web/wp",
"content-install-dir": "web/content"
}
}