-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
111 lines (102 loc) · 2.69 KB
/
composer.json
File metadata and controls
111 lines (102 loc) · 2.69 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
},
{
"type": "composer",
"url": "https://pivvenit.github.io/acf-composer-bridge/composer/v2/wordpress-muplugin/"
},
{
"type": "package",
"package": {
"name": "wp-sync-db/wp-sync-db",
"type": "wordpress-plugin",
"version": "1.0.0",
"source": {
"url": "https://github.com/wp-sync-db/wp-sync-db.git",
"type": "git",
"reference": "master"
}
}
},
{
"type": "package",
"package": {
"name": "wp-sync-db/wp-sync-db-media-files",
"type": "wordpress-plugin",
"version": "1.0.0",
"source": {
"url": "https://github.com/wp-sync-db/wp-sync-db-media-files.git",
"type": "git",
"reference": "master"
}
}
}
],
"require": {
"php": ">=7.4",
"composer/installers": "^1.7",
"wp-sync-db/wp-sync-db": "^1.0.0",
"wp-sync-db/wp-sync-db-media-files": "^1.0.0",
"wpackagist-plugin/amazon-s3-and-cloudfront": "^2.4.4",
"wpackagist-plugin/duplicate-post": "^3.2.6",
"wpackagist-plugin/regenerate-thumbnails": "^3.1.3",
"wpackagist-plugin/wordpress-seo": "^15.0",
"wpackagist-plugin/autoptimize": "^2.7.8",
"wpackagist-plugin/cache-enabler": "^1.5.2",
"wpackagist-plugin/contact-form-7": "^5.2.2",
"wpackagist-plugin/cyr2lat": "^4.5.0",
"wpackagist-plugin/easy-wp-smtp": "^1.4.1",
"wpackagist-plugin/query-monitor": "^3.6.4",
"wpackagist-plugin/redis-cache": "^2.0.15",
"roots/soil": "^4.0.4",
"wpackagist-plugin/webp-express": "^0.18.2"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.4.2",
"roave/security-advisories": "dev-master"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"installer-paths": {
"wp-content/mu-plugins/{$name}/": [
"type:wordpress-muplugin"
],
"wp-content/plugins/{$name}/": [
"type:wordpress-plugin",
"wp-sync-db/wp-sync-db",
"wp-sync-db/wp-sync-db-media-files",
"wpackagist-plugin/amazon-s3-and-cloudfront",
"wpackagist-plugin/duplicate-post",
"wpackagist-plugin/regenerate-thumbnails",
"wpackagist-plugin/wordpress-seo",
"wpackagist-plugin/autoptimize",
"wpackagist-plugin/cache-enabler",
"wpackagist-plugin/contact-form-7",
"wpackagist-plugin/cyr2lat",
"wpackagist-plugin/easy-wp-smtp",
"wpackagist-plugin/query-monitor",
"wpackagist-plugin/redis-cache",
"roots/soil",
"wpackagist-plugin/webp-express"
],
"wp-content/themes/{$name}/": [
"type:wordpress-theme"
]
},
"wordpress-install-dir": ""
},
"scripts": {
"test": [
"phpcs"
]
}
}