-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
83 lines (82 loc) · 2.27 KB
/
composer.json
File metadata and controls
83 lines (82 loc) · 2.27 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
{
"repositories":
[
{
"type":"composer",
"url":"https://connect.advancedcustomfields.com"
},
{
"type":"composer",
"url":"https://wpackagist.org",
"only": [
"wpackagist-plugin/*",
"wpackagist-theme/*"
]
},
{
"type": "package",
"package":
{
"name": "johnbillion/extended-cpts",
"type": "wordpress-muplugin",
"version": "dev-master",
"source":
{
"type": "git",
"url": "https://github.com/johnbillion/extended-cpts.git",
"reference": "trunk"
}
}
},
{
"type": "package",
"package":
{
"name": "deliciousmedia/dm-base",
"type": "wordpress-muplugin",
"version": "dev-master",
"source":
{
"type": "git",
"url": "https://github.com/deliciousmedia/dm-base.git",
"reference": "master"
}
}
}
],
"require":
{
"php": ">=7.4",
"composer/installers": ">=1.0.6",
"davidbarratt/custom-installer": "@dev",
"deliciousmedia/dm-muloader": "@dev",
"deliciousmedia/dm-base": "@dev",
"johnbillion/extended-cpts": "@dev",
"wpackagist-plugin/password-bcrypt": "@stable",
"wpackagist-plugin/mailgun": "@stable",
"wpackagist-plugin/stream": "@stable",
"wpengine/advanced-custom-fields-pro": "*"
},
"extra":
{
"installer-paths":
{
"content/mu-plugins/{$name}/": [
"type:wordpress-muplugin",
"wpackagist-plugin/password-bcrypt",
"johnbillion/extended-cpts",
"deliciousmedia/dm-muloader",
"deliciousmedia/dm-base"
],
"content/plugins/{$name}/": [
"type:wordpress-plugin"
]
}
},
"config": {
"allow-plugins": {
"composer/installers": true,
"davidbarratt/custom-installer": true
}
}
}