-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 1.26 KB
/
Copy pathcomposer.json
File metadata and controls
36 lines (36 loc) · 1.26 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
{
"name": "firstelementjp/fe-csv-import-export",
"description": "FE CSV Import & Export - Simple CSV Management Without the Complexity.",
"type": "wordpress-plugin",
"license": "GPL-2.0+",
"homepage": "https://github.com/firstelementjp/fe-csv-import-export",
"require": {
"php": ">=7.4"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.10",
"phpcsstandards/phpcsutils": "^1.2.3",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"phpcompatibility/php-compatibility": "^9.3",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"wp-coding-standards/wpcs": "^3.4.1",
"phpcsstandards/phpcsextra": "^1.5.1",
"phpunit/phpunit": "^9.6",
"wp-phpunit/wp-phpunit": "^6.5",
"yoast/phpunit-polyfills": "^4.0"
},
"scripts": {
"phpcs": "phpcs --standard=phpcs.xml.dist includes/",
"phpcbf": "phpcbf --standard=phpcs.xml.dist includes/",
"test": "phpunit",
"test-coverage": "phpunit --coverage-html tests/coverage",
"test-unit": "phpunit --testsuite=\"FE CSV Import & Export Unit Tests\"",
"test-integration": "phpunit --testsuite=\"FE CSV Import & Export Integration Tests\"",
"test-standalone": "phpunit --configuration phpunit-standalone.xml"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}