-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·49 lines (49 loc) · 1.57 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
49
{
"name": "xlthlx/wp-inci",
"description": "A WordPress plugin to manage INCI",
"keywords": [
"WordPress",
"Plugin"
],
"authors": [
{
"name": "xlthlx",
"homepage": "https://piccioni.london"
}
],
"extra": {
"installer-paths": {
"vendor/{$vendor}/{$name}/": [
"type:wordpress-plugin"
]
}
},
"homepage": "https://github.com/xlthlx",
"require-dev": {
"roave/security-advisories": "dev-latest",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.2",
"wptrt/wpthemereview": "^0.2.1",
"php-parallel-lint/php-parallel-lint": "^1.4.0",
"wp-cli/i18n-command": "^2.6.1",
"wpreadme2markdown/wp2md": "^4.0.2"
},
"scripts": {
"lint:wpcs": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs --ignore=vendor/*,node_modules/*,wp-content/*,_backup/* --extensions=php . -n -v --report-file=report.txt",
"lint:wpcs:fix": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcbf --ignore=vendor/*,node_modules/*,wp-content/*,_backup/* --extensions=php .",
"lint:php": "@php ./vendor/bin/parallel-lint --exclude .git --exclude vendor .",
"make:pot": "wp i18n make-pot . languages/wp-inci.pot",
"readme": "@php ./vendor/wpreadme2markdown/wp2md/bin/wp2md -i readme.txt -o README.md"
},
"config": {
"allow-plugins": {
"composer/installers": true,
"johnpbloch/wordpress-core-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require": {
"cmb2/cmb2": "^2.11",
"johnbillion/extended-cpts": "^5.0",
"composer/installers": "^2.3"
}
}