-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
97 lines (97 loc) · 2.93 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
{
"name": "patronage/bubs-timber",
"type": "project",
"license": "MIT",
"description": "WordPress boilerplate for pairing with Next.js",
"homepage": "https://www.patronage.org",
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"vendor-dir": "wp-content/plugins/composer-libs",
"allow-plugins": {
"ffraenz/private-composer-installer": true,
"composer/installers": true
},
"platform": {
"php": "8.0.28"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.0",
"composer/installers": "^1.8",
"advanced-custom-fields/advanced-custom-fields-pro": "6.2.1.1",
"wpackagist-plugin/acf-repeater-flexible-content-collapser": "1.2.8",
"wpackagist-plugin/debug-bar": "1.1.4",
"wpackagist-plugin/debug-bar-timber": "1.1.6",
"wpackagist-plugin/disable-emojis": "1.7.6",
"wpackagist-plugin/duplicate-post": "4.5",
"wpackagist-plugin/enable-media-replace": "4.1.4",
"wpackagist-plugin/filter-page-by-template": "3.1",
"wpackagist-plugin/google-apps-login": "3.4.6",
"wpackagist-plugin/post-type-archive-links": "1.3.1",
"wpackagist-plugin/post-type-switcher": "3.2.1",
"wpackagist-plugin/query-monitor": "3.13.1",
"wpackagist-plugin/redirection": "5.3.10",
"wpackagist-plugin/safe-svg": "2.2.0",
"wpackagist-plugin/simple-history": "4.6.0",
"wpackagist-plugin/so-clean-up-wp-seo": "4.0.1",
"wpackagist-plugin/term-management-tools": "2.0.1",
"wpackagist-plugin/timber-library": "1.22.1",
"wpackagist-plugin/transients-manager": "2.0.3",
"wpackagist-plugin/user-switching": "1.7.0",
"wpackagist-plugin/wordpress-seo": "21.2"
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org",
"only": [
"wpackagist-plugin/*",
"wpackagist-theme/*"
]
},
{
"type": "package",
"package": {
"name": "advanced-custom-fields/advanced-custom-fields-pro",
"version": "6.2.1.1",
"type": "wordpress-plugin",
"dist": {
"type": "zip",
"url": "https://connect.advancedcustomfields.com/index.php?a=download&p=pro&k={%PLUGIN_ACF_KEY}&t={%VERSION}"
},
"require": {
"composer/installers": "^1.8",
"ffraenz/private-composer-installer": "^5.0"
}
}
}
],
"extra": {
"installer-paths": {
"composer/wp-content/mu-plugins/{$name}/": [
"type:wordpress-muplugin"
],
"composer/wp-content/plugins/{$name}/": [
"type:wordpress-plugin"
],
"composer/wp-content/themes/{$name}/": [
"type:wordpress-theme"
]
},
"wordpress-install-dir": "composer/wp"
},
"scripts": {
"post-root-package-install": [
"php -r \"copy('.env.example', '.env');\""
],
"post-install-cmd": [
"bash ./_init/init.sh"
],
"post-update-cmd": [
"bash ./_init/init.sh"
]
}
}