-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
97 lines (97 loc) · 2.91 KB
/
composer.json
File metadata and controls
97 lines (97 loc) · 2.91 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
{
"name": "globalis/wp-cubi",
"description": "WordPress modern stack for developers",
"type": "project",
"license": "GPL-2.0-or-later",
"homepage": "https://github.com/globalis-ms/wp-cubi",
"authors": [
{
"name": "Akram-Walid KIES",
"homepage": "https://github.com/akramkies/"
},
{
"name": "Pierre Dargham",
"homepage": "https://github.com/pierre-dargham/"
},
{
"name": "GLOBALIS media systems",
"homepage": "https://www.globalis-ms.com/"
}
],
"keywords": [
"wp-cubi",
"globalis",
"wordpress",
"stack",
"composer",
"robo",
"wp"
],
"support": {
"issues": "https://github.com/globalis-ms/wp-cubi/issues"
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"require": {
"php": ">=8.1 <8.5",
"composer/installers": "^2.3.0",
"roots/wordpress": "~6.8.3",
"globalis/wp-cli-bin": "^2.8.1",
"globalis/wp-cubi-helpers": "^1.0.6",
"globalis/wp-cubi-imagemin": "^1.3.3",
"globalis/wp-unhooked": "^1.0.4",
"globalis/wp-cubi-transient-cache": "^0.3.0",
"johnbillion/extended-cpts": "^5.0.11",
"roots/soil": "^4.1.1",
"inpsyde/wonolog": "3.x-dev",
"wpackagist-plugin/advanced-custom-fields": "^6.3.11",
"wpackagist-plugin/acf-extended": "^0.9.0.9",
"johnbillion/query-monitor": "^3.17.0",
"wpackagist-plugin/wp-crontrol": "^1.15.2",
"wpackagist-plugin/user-switching": "^1.9.1",
"wpackagist-plugin/autodescription": "^5.1.2",
"wpackagist-plugin/limit-login-attempts-reloaded": "^2.26.16",
"wpackagist-plugin/dynamo": "^1.2",
"wpackagist-plugin/two-factor":"^0.9.1",
"wpackagist-plugin/fakerpress":"0.8.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.7.2",
"consolidation/robo": "5.1.0",
"globalis/wp-cubi-robo": "^2.5.2"
},
"extra": {
"installer-paths": {
"web/app/mu-modules/{$name}/": [
"type:wordpress-muplugin"
],
"web/app/modules/{$name}/": [
"type:wordpress-plugin"
],
"web/app/themes/{$name}/": [
"type:wordpress-theme"
]
},
"wordpress-install-dir": "web/wpcb"
},
"suggest": {
"globalis/wp-cubi-robo-globalis": "Provides a BuildAssets trait for RoboFile"
},
"scripts": {
"post-create-project-cmd": [
"chmod 777 log",
"chmod 777 web/media",
"rm -rf .resources LICENSE.md README.md"
]
},
"config": {
"allow-plugins": {
"composer/installers": true,
"roots/wordpress-core-installer": true
}
}
}