-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
85 lines (85 loc) · 2.66 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
{
"name": "company/composer-managed-wordpress",
"description": "Install WordPress by using Composer packages.",
"license": "MIT",
"require": {
"php": "~7.4.30",
"ext-curl": "*",
"ext-exif": "*",
"ext-gd": "*",
"ext-intl": "*",
"ext-mbstring": "*",
"ext-redis": "*",
"ext-xml": "*",
"ext-zip": "*",
"composer-plugin-api": "^2.2",
"composer/installers": "^2.2",
"johnpbloch/wordpress-core-installer": "^2.0",
"koodimonni/composer-dropin-installer": "^1.4",
"roots/wordpress-no-content": "^6.5",
"szepeviktor/sentencepress": "^0.2",
"szepeviktor/waf4wordpress": "^0.1.0",
"timber/timber": "^2.1",
"wpackagist-plugin/advanced-custom-fields": "^6.2",
"wpackagist-plugin/wordpress-seo": "^23.1",
"wpackagist-plugin/wp-redis": "^1.4"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.9",
"szepeviktor/phpstan-wordpress": "^1.3"
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org",
"only": [
"wpackagist-plugin/*",
"wpackagist-theme/*"
]
},
{
"type": "vcs",
"url": "https://github.com/szepeviktor/starter-plugin.git"
},
{
"type": "package",
"package": {
"name": "advanced-custom-fields/advanced-custom-fields-pro",
"type": "wordpress-plugin",
"version": "6.2.9",
"require": {
"composer/installers": "^2.2",
"ffraenz/private-composer-installer": "^5.0"
},
"dist": {
"type": "zip",
"url": "https://connect.advancedcustomfields.com/index.php?a=download&p=pro&k={%PLUGIN_ACF_PRO_KEY}&t={%VERSION}"
}
}
}
],
"config": {
"allow-plugins": {
"composer/installers": true,
"johnpbloch/wordpress-core-installer": true,
"koodimonni/composer-dropin-installer": true
},
"classmap-authoritative": true,
"dropin-installer": "copy",
"preferred-install": {
"*": "dist"
}
},
"extra": {
"dropin-paths": {},
"installer-paths": {
"public/wp-content/plugins/{$name}/": [
"type:wordpress-plugin"
],
"public/wp-content/themes/{$name}/": [
"type:wordpress-theme"
]
},
"wordpress-install-dir": "public/project"
}
}