-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.49 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
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "ernilambar/ns-featured-posts",
"description": "NS Featured Posts",
"license": "GPL-2.0-or-later",
"type": "wordpress-plugin",
"authors": [
{
"name": "Nilambar Sharma",
"email": "[email protected]",
"homepage": "https://www.nilambar.net",
"role": "Developer"
}
],
"require": {
"php": ">=7.2.24",
"ernilambar/optioner": "^3.0",
"ernilambar/wp-admin-notice": "^2.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"php-parallel-lint/php-parallel-lint": "^1.4",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"slevomat/coding-standard": "^8.15",
"wp-cli/i18n-command": "^2.6",
"wp-coding-standards/wpcs": "^3.1"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true
},
"optimize-autoloader": true,
"process-timeout": 7200,
"sort-packages": true
},
"scripts": {
"lint": [
"@lint-php",
"@phpcs"
],
"lint-php": "@php ./vendor/bin/parallel-lint --colors --exclude .git --exclude vendor --exclude node_modules --exclude deploy .",
"phpcbf": "@php ./vendor/bin/phpcbf --report-full --report-summary",
"phpcs": "@php ./vendor/bin/phpcs --report-full --report-summary",
"pot": "./vendor/bin/wp i18n make-pot . --exclude=build,deploy,node_modules,vendor --headers='{\"POT-Creation-Date\":\"\"}'"
}
}