-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 799 Bytes
/
Copy pathcomposer.json
File metadata and controls
31 lines (31 loc) · 799 Bytes
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
{
"name": "wpgaurav/functionalities",
"description": "Development tooling for the Dynamic Functionalities WordPress plugin.",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.1",
"phpcompatibility/phpcompatibility-wp": "^2.1.8",
"phpunit/phpunit": "^9.6.31",
"wp-coding-standards/wpcs": "^3.4"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"platform": {
"php": "7.4.0"
},
"sort-packages": true
},
"scripts": {
"lint": "@php tests/php-lint.php",
"phpcs": "@php -d error_reporting=8191 vendor/bin/phpcs",
"test": "phpunit",
"check": [
"@lint",
"@phpcs",
"@test"
]
}
}