-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathcomposer.json
38 lines (38 loc) · 1.04 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
{
"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|^2",
"php": ">=7.4.33|^8"
},
"require-dev": {
"phpunit/phpunit": "^8.5|^9.6",
"squizlabs/php_codesniffer": "*",
"wp-coding-standards/wpcs": "*",
"yoast/phpunit-polyfills": "^3.0"
},
"scripts": {
"post-install-cmd": [
"[ -f vendor/bin/phpcs ] && \"vendor/bin/phpcs\" --config-set installed_paths vendor/wp-coding-standards/wpcs || true"
],
"post-update-cmd": [
"[ -f vendor/bin/phpcs ] && \"vendor/bin/phpcs\" --config-set installed_paths vendor/wp-coding-standards/wpcs || true"
]
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}