-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathcomposer.json
67 lines (67 loc) · 1.55 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
{
"name": "hellonico/acf-country",
"description": "A country field for ACF.",
"type": "wordpress-plugin",
"keywords": [
"advanced custom fields",
"acf",
"acf-field",
"country",
"wordpress",
"wordpress-plugin"
],
"support": {
"issues": "https://github.com/nlemoine/acf-country/issues",
"source": "https://github.com/nlemoine/acf-country.git"
},
"require": {
"php": "^7.4 || ^8.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.42",
"symplify/easy-coding-standard": "^12.1",
"umpirsky/country-list": "*",
"wpengine/advanced-custom-fields-pro": "^6.0"
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org",
"only": [
"wpackagist-plugin/*",
"wpackagist-theme/*"
]
},
{
"type": "composer",
"url": "https://connect.advancedcustomfields.com",
"only": [
"wpengine/*"
]
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"composer/installers": true,
"ergebnis/composer-normalize": true
},
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"scripts": {
"post-install-cmd": [
"@sync-country-data"
],
"post-update-cmd": [
"@sync-country-data"
],
"cs": "ecs check",
"cs:fix": "ecs check --fix",
"sync-country-data": [
"rsync -zavr --include '*/' --include '*.php' --exclude '*' --prune-empty-dirs vendor/umpirsky/country-list/data ."
]
}
}