-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
102 lines (102 loc) · 3.13 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
{
"name": "metabolism/wp-steroids-demo",
"type": "project",
"license": "MIT",
"description": "WordPress boilerplate with Composer, easier configuration, and an improved folder structure based on Bedrock",
"homepage": "https://roots.io/bedrock/",
"authors": [
{
"name": "Jérome Barbato",
"email": "jerome.barbato@gmail.com",
"homepage": "https://github.com/metabolism"
},
{
"name": "Scott Walkinshaw",
"email": "scott.walkinshaw@gmail.com",
"homepage": "https://github.com/swalkinshaw"
},
{
"name": "Ben Word",
"email": "ben@benword.com",
"homepage": "https://github.com/retlehs"
}
],
"keywords": [
"bedrock", "composer", "roots", "wordpress", "wp", "wp-config"
],
"support": {
"issues": "https://github.com/metabolism/wp-steroids/issues"
},
"repositories": [
{
"type":"composer", "url":"https://connect.advancedcustomfields.com"
},
{
"type": "composer",
"url": "https://wpackagist.org",
"only": ["wpackagist-plugin/*", "wpackagist-theme/*"]
}
],
"require": {
"php": ">=8.1",
"ext-gd": "*",
"ext-json": "*",
"ext-openssl": "*",
"ext-mysqli": "*",
"composer/installers": "^2.2",
"vlucas/phpdotenv": "^5.5",
"oscarotero/env": "^2.1",
"roots/wordpress": "6.6.*",
"roots/wp-config": "^1.0.0",
"roots/wp-password-bcrypt": "^1.1.0",
"platformsh/config-reader": "^2.4",
"mnsami/composer-custom-directory-installer": "^2.0",
"timber/timber": "^2.0",
"metabolism/wp-steroids": "^1.4.0",
"metabolism/acf-extensions": "^1.3.8",
"wpengine/advanced-custom-fields-pro": "^6.3.6",
"akhela/wp-carbon-calculator": "^1.0.3",
"wpackagist-plugin/redirection": "^5.3.2",
"wpackagist-plugin/post-types-order": "^2.3.2",
"wpackagist-plugin/cache-control": "^2.2.5",
"wpackagist-plugin/cache-enabler": "^1.8.15",
"wpackagist-plugin/wp-2fa": "^2.3.0",
"wpackagist-plugin/bugsnag": "^1.6.3"
},
"require-dev": {
"wpackagist-plugin/query-monitor": "^3.9.0",
"wpackagist-plugin/password-protected": "^2.5.3",
"roave/security-advisories": "dev-latest"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"allow-plugins": {
"composer/installers": true,
"roots/wordpress-core-installer": true,
"mnsami/composer-custom-directory-installer": true
}
},
"prefer-stable": true,
"extra": {
"installer-paths": {
"public/app/mu-plugins/{$name}/": ["type:wordpress-muplugin"],
"public/app/plugins/{$name}/": ["type:wordpress-plugin","htmlburger/carbon-fields"],
"public/app/themes/{$name}/": ["type:wordpress-theme"]
},
"wordpress-install-dir": "public/edition"
},
"scripts": {
"post-update-cmd": [
"rm -Rf public/edition/wp-content",
"rm -f public/edition/readme.html",
"rm -f public/edition/wp-admin/install.php",
"rm -f public/edition/wp-config-sample.php",
"rm -f public/edition/xmlrpc.php",
"rm -f public/edition/wp-activate.php"
],
"post-root-package-install": [
"php -r \"copy('.env.example', '.env');\""
]
}
}