-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
101 lines (101 loc) · 2.93 KB
/
Copy pathcomposer.json
File metadata and controls
101 lines (101 loc) · 2.93 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
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
{
"name": "osomstudio/juniper",
"type": "project",
"license": "MIT",
"homepage": "https://github.com/osomstudio/juniper",
"authors": [
{
"name": "OsomStudio",
"homepage": "https://osomstudio.com"
}
],
"keywords": [
"juniper",
"timber",
"bedrock",
"composer",
"roots",
"wordpress",
"wp",
"wp-config"
],
"support": {
"issues": "https://github.com/osomstudio/juniper/issues"
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org",
"only": [
"wpackagist-plugin/*",
"wpackagist-theme/*"
]
},
{
"type": "composer",
"url": "https://connect.advancedcustomfields.com"
}
],
"require": {
"php": ">=8.2",
"composer/installers": "2.3.0",
"vlucas/phpdotenv": "5.6.3",
"oscarotero/env": "2.1.1",
"roots/bedrock-autoloader": "1.1.0",
"roots/bedrock-disallow-indexing": "2.1.0",
"roots/wordpress": "6.9.4",
"roots/wp-config": "1.0.0",
"wpackagist-plugin/contact-form-7": "6.1.5",
"wpackagist-plugin/wordpress-seo": "27.5",
"wpackagist-plugin/w3-total-cache": "2.9.4",
"wpackagist-plugin/contact-form-7-honeypot": "3.5.0",
"wpackagist-plugin/webp-express": "0.25.14",
"wpengine/advanced-custom-fields-pro": "6.8.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.13.4",
"wp-coding-standards/wpcs": "3.3.0"
},
"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 --standard=WordPress-Extra -snp --basepath=. --ignore=vendor,node_modules --extensions=php --exclude=WordPress.Files.FileName ./web/app/themes"
],
"start": [
"composer install",
"cd web/app/themes/* && npm install && composer install"
]
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"allow-plugins": {
"composer/installers": true,
"roots/wordpress-core-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true,
"platform": {
"php": "8.2"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}