-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.83 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
{
"name": "devuri/raydium",
"type": "project",
"license": "MIT",
"description": "Effortlessly spin up a fully-configured WordPress site in no time, specifically engineered for rapid development and deployment of secure, scalable WordPress applications, that support multiple tenants from a single installation.",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"devuri/wpframework": "^0.9",
"devuri/twigit": "^0.1",
"johnpbloch/wordpress": "^6.6",
"devuri/advanced-custom-site-status": "*",
"wpackagist-plugin/disable-comments": "*",
"wpackagist-plugin/disable-json-api": "*",
"wpackagist-plugin/email-log": "*",
"wpackagist-plugin/query-monitor": "*",
"wpackagist-plugin/stream": "*",
"wpackagist-plugin/sucuri-scanner": "*",
"wpackagist-plugin/wp-white-label-login": "*",
"wpackagist-theme/kadence": "*",
"devuri/wp-kdx-canvas": "^0.2",
"wpackagist-theme/twentytwentyfour": "*"
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org",
"only": [
"wpackagist-plugin/*",
"wpackagist-theme/*"
]
}
],
"extra": {
"wordpress-install-dir": "public/wp",
"installer-paths": {
"public/wp-content/mu-plugins/{$name}/": [
"type:wordpress-muplugin"
],
"public/wp-content/plugins/{$name}/": [
"type:wordpress-plugin"
],
"public/wp-content/themes/{$name}/": [
"type:wordpress-theme"
]
}
},
"config": {
"allow-plugins": {
"johnpbloch/wordpress-core-installer": true,
"composer/installers": true
}
}
}