-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.25 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.25 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
{
"name": "bea/acf-options-for-polylang",
"description": "Improves Polylang by adding per-language support for ACF options pages—each language can have its own option values.",
"license": "GPL-3.0-or-later",
"type": "wordpress-plugin",
"keywords": [
"acf-options",
"polylang",
"acf",
"options"
],
"authors": [
{
"name": "Be API",
"email": "technique@beapi.fr",
"homepage": "https://beapi.fr"
}
],
"homepage": "https://github.com/BeAPI/acf-options-for-polylang",
"require": {
"php": ">=7.4.0",
"composer/installers": "^1.0 || ^2.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"mockery/mockery": "^1.6",
"overtrue/phplint": "^3.0 || ^9.0",
"php-parallel-lint/php-parallel-lint": "^1.4",
"phpcompatibility/php-compatibility": "^9.3",
"phpro/grumphp-shim": "^1.0 || ^2.7",
"phpunit/phpunit": "^9.6",
"squizlabs/php_codesniffer": "^3.10",
"wp-coding-standards/wpcs": "^3.1",
"yoast/phpunit-polyfills": "^2.0"
},
"minimum-stability": "stable",
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpro/grumphp-shim": true
}
},
"scripts": {
"cbf": "./vendor/bin/phpcbf",
"cs": "./vendor/bin/phpcs"
}
}