-
-
Notifications
You must be signed in to change notification settings - Fork 47
/
composer.json
36 lines (36 loc) · 1.05 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
{
"name": "torounit/custom-post-type-permalinks",
"description": "Edit the permalink of custom post type !",
"type": "wordpress-plugin",
"license": "GPL-2.0+",
"authors": [
{
"name": "Hiroshi Urabe",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "*",
"phpcompatibility/phpcompatibility-wp": "*",
"squizlabs/php_codesniffer": "*",
"wp-coding-standards/wpcs": "*",
"yoast/phpunit-polyfills": "^1.0.1"
},
"scripts": {
"phpcs": [
"@php vendor/bin/phpcs -p -s -v -n --standard=./.phpcs.xml.dist --extensions=php"
],
"format": [
"@php vendor/bin/phpcbf --standard=./.phpcs.xml.dist --report-summary --report-source"
],
"test": "@php ./vendor/phpunit/phpunit/phpunit"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}