This repository has been archived by the owner on Jun 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
110 lines (110 loc) · 2.95 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "newmediadenver/wp",
"type": "project",
"license": "MIT",
"description": "RiotLabs / NewMedia's WordPress stack",
"homepage": "https://github.com/newmediadenver/wp",
"authors": [
{
"name": "Nathan Smith",
"email": "[email protected]",
"homepage": "https://github.com/alkymst"
}
],
"keywords": [
"wordpress",
"stack",
"composer",
"vagrant",
"wp"
],
"support": {
"issues": "https://github.com/newmediadenver/wp/issues"
},
"config": {
"preferred-install": "dist"
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
},
{
"type": "vcs",
"url": "https://github.com/tabrisrp/wp-background-processing"
},
{
"type": "package",
"package": {
"name": "gravityforms/gravityforms",
"type": "wordpress-plugin",
"version": "2.4.20",
"dist": {
"url": "https://github.com/wp-premium/gravityforms/archive/2.4.20.zip",
"type": "zip"
}
}
},
{
"type": "package",
"package": {
"name": "advanced-custom-fields/advanced-custom-fields-pro",
"type": "wordpress-plugin",
"version": "5.9.1",
"dist": {
"url": "https://github.com/wp-premium/advanced-custom-fields-pro/archive/master.zip",
"type": "zip"
}
}
},
{
"type": "package",
"package": {
"name": "wp-rocket/wp-rocket",
"type": "wordpress-plugin",
"version": "3.8.1",
"dist": {
"url": "https://github.com/wp-media/wp-rocket/archive/v3.8.1.zip",
"type": "zip"
}
}
}
],
"require": {
"php": "^7.1",
"composer/installers": "^1.7",
"vlucas/phpdotenv": "^3.0.0",
"oscarotero/env": "^1.1.0",
"roots/wordpress": "^5.6.0",
"advanced-custom-fields/advanced-custom-fields-pro": "^5.9.1",
"gravityforms/gravityforms": "^2.4.20",
"roots/wp-password-bcrypt": "1.0.0",
"wpackagist-plugin/stream": "^3.4",
"wpackagist-plugin/wordpress-importer": "~0.6",
"wpackagist-plugin/autodescription": "^4.0",
"wpackagist-plugin/google-sitemap-generator": "^4.0.8",
"wpackagist-plugin/wp-mail-smtp": "^2.0",
"wpackagist-plugin/wpmandrill": "^1.33",
"wpackagist-plugin/classic-editor": "^1.5",
"wpackagist-plugin/wp-gdpr-compliance": "^1.4",
"wpackagist-plugin/stackable-ultimate-gutenberg-blocks": "^2.1",
"wpackagist-plugin/social-pug": "^1.6",
"wpackagist-plugin/cloudflare": "^3.8",
"wpackagist-plugin/redirection": "^4.9",
"wpackagist-plugin/wordfence": "^7.4"
},
"extra": {
"installer-paths": {
"docroot/content/mu-plugins/{$name}/": [
"type:wordpress-muplugin"
],
"docroot/content/plugins/{$name}/": [
"type:wordpress-plugin"
],
"docroot/content/themes/{$name}/": [
"type:wordpress-theme"
]
},
"wordpress-install-dir": "docroot/wp"
}
}