-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
74 lines (74 loc) · 1.83 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
70
71
72
73
74
{
"name": "smithfield-studio/acf-svg-icon-picker",
"description": "Add ACF field for selecting SVG icons.",
"minimum-stability": "stable",
"license": "MIT",
"keywords": [
"wordpress",
"acf",
"svg",
"icon",
"picker",
"field"
],
"authors": [
{
"name": "Mike Sheppard",
"email": "[email protected]",
"homepage": "https://smithfield.studio"
},
{
"name": "Erik van der Bas",
"email": "[email protected]",
"homepage": "https://basedonline.nl"
},
{
"name": "houke"
}
],
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org",
"only": [
"wpackagist-plugin/*",
"wpackagist-theme/*"
]
}
],
"support": {
"issues": "https://github.com/smithfield-studio/acf-svg-icon-picker/issues",
"source": "https://github.com/smithfield-studio/acf-svg-icon-picker"
},
"type": "wordpress-plugin",
"require-dev": {
"wp-coding-standards/wpcs": "^3.1",
"phpcompatibility/php-compatibility": "^9",
"phpstan/phpstan": "^1.7",
"phpunit/phpunit": "^9.0",
"szepeviktor/phpstan-wordpress": "^1.1",
"10up/phpcs-composer": "^3.0",
"php-stubs/acf-pro-stubs": "^6.0",
"yoast/phpunit-polyfills": "^3.0",
"wpackagist-plugin/advanced-custom-fields": "^6.0"
},
"scripts": {
"cs": "@php ./vendor/bin/phpcs",
"cs:fix": "@php ./vendor/bin/phpcbf",
"phpstan": "phpstan analyse --memory-limit=1G",
"test": "@php ./vendor/bin/phpunit"
},
"scripts-aliases": {
"cs": ["lint"],
"cs:fix": ["lint:fix"],
"phpstan": ["stan", "analyze", "analyse"],
"test": ["unit", "tests"]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"pestphp/pest-plugin": true,
"composer/installers": true
}
}
}