-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
101 lines (97 loc) · 3.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
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": "theredcat/ndustrial-wordpress",
"type": "project",
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
},
{
"url": "https://github.com/theredcat/advanced-custom-fields-wpcli.git",
"type": "git"
}
],
"require": {
"php": ">=8.2",
"psy/psysh" : "0.12.2",
"johnpbloch/wordpress": "6.4.3",
"johnpbloch/wordpress-core-installer": "2.0.0",
"incenteev/composer-parameter-handler": "2.2.0",
"wp-cli/wp-cli" : "2.10.0",
"wp-cli/db-command" : "2.0.27",
"wp-cli/cron-command" : "2.2.3",
"wp-cli/core-command" : "2.1.17",
"wp-cli/role-command" : "2.0.14",
"wp-cli/eval-command" : "2.2.3",
"wp-cli/media-command" : "2.0.21",
"wp-cli/import-command" : "2.0.12",
"wp-cli/doctor-command" : "2.1.3",
"wp-cli/rewrite-command": "2.0.13",
"wp-cli/checksum-command" : "2.2.5",
"wp-cli/language-command" : "2.0.19",
"wp-cli/extension-command" : "2.1.19",
"wp-cli/super-admin-command" : "2.0.13",
"wp-cli/search-replace-command" : "2.1.5",
"wp-cli/maintenance-mode-command" : "2.1.0",
"wpackagist-plugin/elasticpress": "5.0.2",
"wpackagist-plugin/w3-total-cache": "2.7.0",
"wpackagist-plugin/woocommerce": "8.6.1",
"wpackagist-plugin/advanced-access-manager": "6.9.23",
"wpackagist-plugin/wordpress-seo": "22.2",
"wpackagist-plugin/advanced-custom-fields": "6.2.7",
"hoppinger/advanced-custom-fields-wpcli": "dev-addComposerInstallers",
"wpackagist-plugin/smtp-mailer": "1.1.12"
},
"require-dev": {
"wpackagist-plugin/wordpress-importer": "0.8.2",
"wp-cli/profile-command" : "2.1.3",
"wp-cli/widget-command" : "2.1.9",
"wp-cli/scaffold-command": "2.2.0"
},
"scripts": {
"post-install-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters"
],
"post-update-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters"
]
},
"extra": {
"wordpress-install-dir": "wp",
"installer-paths": {
"wp/wp-content/plugins/{$name}/": ["type:wordpress-plugin"],
"wp/wp-content/themes/{$name}/": ["type:wordpress-theme"]
},
"incenteev-parameters": {
"file": "config/parameters.yml",
"env-map": {
"locale": "LOCALE",
"database_wp_host": "DATABASE_WP_HOST",
"database_wp_port": "DATABASE_WP_PORT",
"database_wp_name": "DATABASE_WP_NAME",
"database_wp_user": "DATABASE_WP_USER",
"database_wp_password": "DATABASE_WP_PASSWORD",
"aws_key_id": "AWS_KEY_ID",
"aws_access_key": "AWS_ACCESS_KEY",
"elasticpress_host": "ELASTICPRESS_HOST",
"elasticpress_port": "ELASTICPRESS_PORT",
"elasticpress_index": "ELASTICPRESS_INDEX",
"elasticpress_index_prefix": "ELASTICPRESS_INDEX_PREFIX",
"elasticpress_network": "ELASTICPRESS_NETWORK",
"elasticpress_protocol": "ELASTICPRESS_PROTOCOL",
"docker_wordpress_title": "WORDPRESS_TITLE",
"docker_wordpress_username": "WORDPRESS_USERNAME",
"docker_wordpress_password": "WORDPRESS_PASSWORD",
"docker_wordpress_email": "WORDPRESS_EMAIL",
"docker_wordpress_language": "WORDPRESS_LANGUAGE",
"docker_wordpress_multisite": "WORDPRESS_MULTISITE"
}
}
},
"config": {
"allow-plugins": {
"johnpbloch/wordpress-core-installer": true,
"composer/installers": true
}
}
}