-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
69 lines (69 loc) · 1.61 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
{
"name": "flade/starter",
"authors": [
{
"name": "flade team",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org",
"only": [
"wpackagist-plugin/*",
"wpackagist-theme/*",
"wpengine/*"
]
},
{
"type": "composer",
"url": "https://connect.advancedcustomfields.com"
},
{
"type": "package",
"package": {
"name": "advanced-custom-fields/advanced-custom-fields-pro",
"version": "6.2.7",
"type": "wordpress-plugin",
"dist": {
"type": "zip",
"url": "https://connect.advancedcustomfields.com/v2/plugins/download?p=pro&k=b3JkZXJfaWQ9MTYyNDgxfHR5cGU9cGVyc29uYWx8ZGF0ZT0yMDE5LTA2LTA2IDE5OjEwOjQw&t=6.2.7"
}
}
}
],
"require-dev": {
"wp-coding-standards/wpcs": "^2.3",
"10up/wp_mock": "^1.0.0",
"phpunit/phpunit": "^9.3"
},
"require": {
"wpackagist-plugin/contact-form-7": "5.7.*",
"wpackagist-plugin/contact-form-cfdb7": "1.2.*",
"wpackagist-plugin/duplicate-page": "4.5.*",
"wpackagist-plugin/password-protected": "2.*",
"wpackagist-plugin/query-monitor": "3.*",
"wpengine/advanced-custom-fields-pro": "6.1.*"
},
"extra": {
"installer-paths": {
"plugins/{$name}/": [
"type:wordpress-plugin"
]
}
},
"config": {
"allow-plugins": {
"composer/installers": true
}
},
"autoload": {
"psr-4": {
"Flade\\Tests\\": "tests/"
}
},
"scripts": {
"generate-test": "php themes/flade/tests/generate-test.php"
}
}