-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
36 lines (36 loc) · 928 Bytes
/
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
{
"name": "mmirus/gravity-forms-data-attributes",
"description": "Add custom data attributes to Gravity Forms fields.",
"type": "wordpress-plugin",
"license": "MIT",
"homepage": "https://github.com/mmirus/gravity-forms-data-attributes",
"authors": [
{
"name": "Matt Mirus",
"email": "[email protected]",
"homepage": "https://github.com/mmirus"
}
],
"keywords": [
"wordpress",
"gravity forms"
],
"support": {
"issues": "https://github.com/mmirus/gravity-forms-data-attributes/issues"
},
"require": {
"php": ">=7.1.0",
"composer/installers": "^1.6"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.3",
"jakub-onderka/php-parallel-lint": "^1.0",
"jakub-onderka/php-console-highlighter": "^0.4.0"
},
"scripts": {
"test": [
"vendor/bin/parallel-lint --colors *.php app/",
"phpcs -n --standard=PSR2 *.php app/"
]
}
}