-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
46 lines (46 loc) · 1.18 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
{
"name": "shivapoudel/wp-plugin-starter",
"description": "Just another WordPress plugin starter.",
"homepage": "https://shivapoudel.com",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"composer/installers": "1.11.0"
},
"require-dev": {
"wp-cli/i18n-command": "2.2.6",
"wp-coding-standards/wpcs": "2.3.0",
"dealerdirect/phpcodesniffer-composer-installer": "0.7.1",
"phpcompatibility/phpcompatibility-wp": "2.1.1",
"sirbrillig/phpcs-variable-analysis": "2.11.0"
},
"autoload": {
"psr-4": {
"WP_Plugin_Starter\\": "src/"
}
},
"scripts": {
"phpcs": [
"phpcs"
],
"phpcbf": [
"phpcbf"
],
"makepot-audit": [
"wp i18n make-pot . --slug=wp-plugin-starter"
],
"makepot": [
"@makepot-audit --skip-audit"
]
},
"extra": {
"scripts-description": {
"phpcs": "Analyze code against the WordPress coding standard with PHP_CodeSniffer",
"phpcbf": "Fix coding standards warnings/errors automattically with PHP Code Beautifier",
"makepot-audit": "Generate langauges/wp-plugin-starter.pot file and run audit",
"makepot": "Generate langauges/wp-plugin-starter.pot file"
}
}
}