-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
35 lines (35 loc) · 1.25 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
{
"name": "qoewp/qoe",
"description": "",
"license": "GPL-2.0-or-later",
"homepage": "https://github.com/qoewp/qoe/",
"require": {
"php": ">=5.6",
"ernilambar/wp-admin-notice": "^1.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"ergebnis/composer-normalize": "^2.31",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"wp-cli/i18n-command": "^2.4",
"wp-coding-standards/wpcs": "^3.0"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true
},
"sort-packages": true
},
"scripts": {
"compat": "@php ./vendor/bin/phpcs --standard=.phpcompat.xml.dist --report-full --report-summary .",
"lint": "@php ./vendor/bin/phpcs --report-full --report-summary .",
"lint:error": "@lint -n",
"lint:fix": "@php ./vendor/bin/phpcbf --report-full --report-summary .",
"lint:php": "@php ./vendor/bin/parallel-lint --exclude .git --exclude node_modules --exclude vendor .",
"pc:config": "@php ./vendor/bin/phpcs --config-show",
"pc:info": "@php ./vendor/bin/phpcs -i",
"pot": "./vendor/bin/wp i18n make-pot . languages/qoe.pot --exclude=deploy,vendor --headers='{\"POT-Creation-Date\":\"\"}'"
}
}