-
Notifications
You must be signed in to change notification settings - Fork 32
/
composer.json
55 lines (54 loc) · 1.8 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
50
51
52
53
54
55
{
"name": "helgatheviking/nav-menu-roles",
"description": "WordPress plugin to hide custom menu items based on user roles",
"type": "wordpress-plugin",
"keywords": [],
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Kathy Darling",
"role": "lead",
"homepage": "https://www.kathyisawesome.com"
},
{
"name": "Contributors",
"homepage": "https://github.com/helgatheviking/nav-menu-roles/graphs/contributors"
}
],
"homepage": "https://www.wordpress.org/plugins/nav-menu-roles/",
"support": {
"source": "https://github.com/helgatheviking/nav-menu-roles"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"wp-cli/i18n-command": "^2.4",
"wp-coding-standards/wpcs": "^2.3"
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"makepot-audit": [
"wp --allow-root i18n make-pot . languages/nav-menu-roles.pot --slug=nav-menu-roles --exclude=\".github,.wordpress-org,node_modules,vendor,build,deploy\" --headers=\"Report-Msgid-Bugs-To:https://github.com/helgatheviking/Nav-Menu-Roles/issues/\n\""
],
"makepot": [
"@makepot-audit --skip-audit"
],
"phpcs": [
"@php ./vendor/bin/phpcs . -s -p -n"
],
"phpcb": [
"@php ./vendor/bin/phpcbf . -p"
]
},
"extra": {
"scripts-description": {
"phpcs": "Analyze code against the WordPress coding standards with PHP_CodeSniffer",
"phpcb": "Fix coding standards warnings/errors automatically with PHP Code Beautifier"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}