-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
executable file
·99 lines (99 loc) · 2.78 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
{
"name": "cloak-labs/cloakwp-bedrock",
"type": "project",
"license": "LGPL-3.0-only",
"description": "Headless WordPress boilerplate for CloakWP projects, with modern development tools, easier configuration, and an improved WP folder structure.",
"homepage": "https://github.com/cloak-labs/cloakwp-bedrock",
"authors": [
{
"name": "Kaelan Smith",
"email": "[email protected]",
"homepage": "https://github.com/kaelansmith"
}
],
"keywords": [
"headless",
"bedrock",
"composer",
"cloakwp",
"wordpress",
"wp",
"wp-config"
],
"support": {
"issues": "https://github.com/cloak-labs/cloakwp-bedrock/issues"
},
"require": {
"php": ">=8.0",
"composer/installers": "^1.0 || ^2.2",
"vlucas/phpdotenv": "^5.5",
"oscarotero/env": "^2.1",
"roots/bedrock-autoloader": "^1.0",
"roots/bedrock-disallow-indexing": "^2.0",
"roots/wordpress": "^6.0.3",
"roots/wp-config": "1.0.0",
"roots/wp-password-bcrypt": "1.1.0",
"wpackagist-theme/twentytwentythree": "^1.0",
"wpackagist-plugin/advanced-custom-fields": "^6.0",
"wpackagist-plugin/wordpress-seo": "^20.2",
"wpackagist-plugin/acf-content-analysis-for-yoast-seo": "^3.0.1",
"wpackagist-plugin/duplicate-post": "^4.5",
"wpackagist-plugin/jwt-authentication-for-wp-rest-api": "^1.3.2",
"wpackagist-plugin/post-2-post-for-acf": "^1.7.0",
"johnbillion/extended-cpts": "^5.0",
"vinkla/extended-acf": "^13.7.0",
"cloak-labs/cloakwp-base-theme": "^1.0.0",
"cloak-labs/cloakwp-inception-theme": "^0.0.2",
"cloak-labs/cloakwp-plugin": "^1.0.1"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.7.1",
"roave/security-advisories": "dev-latest"
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org",
"only": [
"wpackagist-plugin/*",
"wpackagist-theme/*"
]
},
{
"type": "composer",
"url": "https://connect.advancedcustomfields.com"
}
],
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"allow-plugins": {
"composer/installers": true,
"roots/wordpress-core-installer": true
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"extra": {
"installer-paths": {
"web/app/mu-plugins/{$name}/": [
"type:wordpress-muplugin"
],
"web/app/plugins/{$name}/": [
"type:wordpress-plugin"
],
"web/app/themes/{$name}/": [
"type:wordpress-theme"
]
},
"wordpress-install-dir": "web/wp"
},
"scripts": {
"post-root-package-install": [
"php -r \"copy('.env.example', '.env');\""
],
"test": [
"phpcs"
]
}
}