-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 1.66 KB
/
composer.json
File metadata and controls
67 lines (67 loc) · 1.66 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
{
"name": "plugins/installer",
"authors": [
{
"name": "fishtankmike",
"email": "mike@fishtankagency.com"
}
],
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org",
"only": [
"wpackagist-plugin/*",
"wpackagist-theme/*"
]
},
{
"type": "package",
"package": {
"name": "advanced-custom-fields/advanced-custom-fields-pro",
"version": "6.0.0",
"type": "wordpress-plugin",
"dist": {
"type": "zip",
"url": "https://connect.advancedcustomfields.com/index.php?a=download&p=pro&k=b3JkZXJfaWQ9MTA4MTAzfHR5cGU9ZGV2ZWxvcGVyfGRhdGU9MjAxNy0wNi0wOSAxMzo1MToyMg=="
},
"require": {
"ffraenz/private-composer-installer": "^5.0"
}
}
}
],
"require": {
"advanced-custom-fields/advanced-custom-fields-pro": "^6.0.0",
"wpackagist-plugin/acf-image-aspect-ratio-crop": "6.0.2",
"wpackagist-plugin/wordpress-seo": "^20.7",
"wpackagist-plugin/wp-mail-smtp": "^3.8.0",
"wpackagist-plugin/webp-express": "^0.25.6",
"wpackagist-plugin/disable-gutenberg": "^3.0",
"wpackagist-plugin/gf-datetime-field-add-on": "^1.2.0",
"wpackagist-plugin/facebook-messenger-customer-chat": "^2.5"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.7.1",
"roave/security-advisories": "dev-latest"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"allow-plugins": {
"composer/installers": true,
"roots/wordpress-core-installer": true,
"ffraenz/private-composer-installer": true
}
},
"extra": {
"installer-paths": {
"wp-content/plugins/{$name}/": [
"type:wordpress-plugin"
],
"wp-content/themes/{$name}/": [
"type:wordpress-theme"
]
}
}
}