forked from mcguffin/acf-openstreetmap-field
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 1.06 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
{
"name": "mcguffin/acf-openstreetmap-field",
"description": "WordPress ACF Field for OpenStreetMap",
"license": "GPL-3.0-or-later",
"keywords": [
"ACF",
"ACF Field",
"Map",
"OpenStreetMap",
"Lealet"
],
"homepage": "https://github.com/mcguffin/acf-openstreetmap-field",
"type": "wordpress-plugin",
"require": {
"composer/installers": "~1.2",
"php": ">=5.6.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "*",
"wp-coding-standards/wpcs": "*",
"phpcompatibility/php-compatibility": "*",
"pheromone/phpcs-security-audit":"*"
},
"scripts": {
"post-install-cmd": [
"[ -f vendor/bin/phpcs ] && \"vendor/bin/phpcs\" --config-set installed_paths vendor/wp-coding-standards/wpcs,vendor/pheromone/phpcs-security-audit || true"
],
"post-update-cmd": [
"[ -f vendor/bin/phpcs ] && \"vendor/bin/phpcs\" --config-set installed_paths vendor/wp-coding-standards/wpcs,vendor/pheromone/phpcs-security-audit || true"
]
},
"config": {
"allow-plugins": {
"composer/installers": true
}
}
}