-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
82 lines (82 loc) · 1.98 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
{
"name": "bigfork/wordpress-recipe",
"type": "wordpress-recipe",
"description": "Bigfork’s Bedrock WordPress recipe",
"homepage": "https://www.bigfork.co.uk",
"license": "BSD-3-Clause",
"repositories": [
{
"type": "composer",
"url": "https://connect.advancedcustomfields.com"
},
{
"type": "composer",
"url": "https://wpackagist.org",
"only": [
"wpackagist-plugin/*",
"wpackagist-theme/*"
]
},
{
"type": "git",
"url": "https://github.com/tabrisrp/wp-background-processing"
}
],
"require": {
"composer/installers": "^2",
"oscarotero/env": "^2",
"roots/bedrock-autoloader": "^1",
"roots/bedrock-disallow-indexing": "^2",
"roots/wordpress": "^6",
"roots/wp-config": "^1",
"roots/wp-password-bcrypt": "^1",
"timber/timber": "^2",
"vlucas/phpdotenv": "^5",
"wp-media/wp-rocket": "^3",
"wpackagist-plugin/acf-extended": "^0",
"wpackagist-plugin/customizer-disabler": "^2",
"wpackagist-plugin/disable-gutenberg": "^3",
"wpackagist-plugin/simple-page-ordering": "^2",
"wpackagist-plugin/wordfence": "^7",
"wpackagist-plugin/wordpress-seo": "^23",
"wpengine/advanced-custom-fields-pro": "^6"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3",
"roave/security-advisories": "dev-latest",
"symfony/var-dumper": "^6"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"roots/wordpress-core-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"installer-paths": {
"public/app/mu-plugins/{$name}/": [
"type:wordpress-muplugin"
],
"public/app/plugins/{$name}/": [
"type:wordpress-plugin"
],
"public/app/themes/{$name}/": [
"type:wordpress-theme"
]
},
"wordpress-install-dir": "public/wp"
},
"autoload": {
"psr-4": {
"Bigfork\\": "util/Bigfork"
}
},
"scripts": {
"post-create-project-cmd": "Bigfork\\Installer\\Install::postCreateProject"
}
}