-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
50 lines (50 loc) · 1.25 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
{
"name": "olliejones/index-wp-mysql-for-speed",
"description": "Speed up your WordPress site by adding high-performance keys (database indexes) to your MySQL database tables.",
"type": "wordpress-plugin",
"keywords": [
"wordpress",
"database",
"index",
"key",
"performance",
"mysql",
"mariadb",
"wp-cli"
],
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Oliver Jones",
"email": "olliejones@gmail.com",
"homepage": "https://github.com/OllieJones"
},
{
"name": "Rick James"
}
],
"support": {
"issues": "https://github.com/OllieJones/index-wp-mysql-for-speed/issues",
"forum": "https://wordpress.org/support/plugin/index-wp-mysql-for-speed/",
"source": "https://github.com/OllieJones/index-wp-mysql-for-speed/"
},
"require": {
"php": ">=5.6.20",
"composer/installers": "~v2",
"ext-mbstring": "*",
"ext-ctype": "*",
"ext-json": "*"
},
"scripts": {
"install-mu-module": [
"mkdir -p ../../mu-plugins",
"cp code/assets/mu/index-wp-mysql-for-speed-update-filter.php ../../mu-plugins/"
]
},
"config": {
"allow-plugins": {
"composer/installers": true,
"johnpbloch/wordpress-core-installer": true
}
}
}