-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
31 lines (31 loc) · 904 Bytes
/
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
{
"name": "asharirfan/simple-primary-category",
"description": "A light-weight WordPress plugin to assign & query posts and custom post types based on their primary taxonomy.",
"type": "wordpress-plugin",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Ashar Irfan",
"email": "[email protected]"
}
],
"config": {
"platform": {
"php": "7.3"
}
},
"require": {
"composer/installers": "^1.11.0"
},
"minimum-stability": "stable",
"require-dev": {
"wp-coding-standards/wpcs": "2.3.0",
"dealerdirect/phpcodesniffer-composer-installer": "0.7.1",
"phpcompatibility/phpcompatibility-wp": "2.1.3"
},
"scripts": {
"format": "phpcbf --report=summary,source",
"lint": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs --standard=phpcs.xml --extensions=php .",
"pot": "wp i18n make-pot . build/languages/_s.pot --exclude=node_modules,vendor,build --allow-root"
}
}