-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
32 lines (32 loc) · 943 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
32
{
"name": "aivec/environment-switcher",
"description": "Switch between development, staging, and production environments for integration testing.",
"authors": [
{
"name": "Evan Shaw",
"email": "[email protected]"
}
],
"require-dev": {
"aivec/phpcs-wp": "^2.0",
"wp-cli/i18n-command": "^2.2",
"aivec/pt-bundler": "^1.1"
},
"autoload": {
"psr-4": {
"Aivec\\Plugins\\EnvironmentSwitcher\\": "lib"
}
},
"autoload-dev": {
"psr-4": {
"Aivec\\Plugins\\EnvironmentSwitcher\\": "src"
}
},
"scripts": {
"lint": "phpcs -ps --standard=AivecWP-5 .",
"lint:fix": "phpcbf -ps --standard=AivecWP-5 .",
"i18n:create-pot": "wp i18n make-pot . languages/messages.pot",
"i18n:update-pos": "composer i18n:create-pot && find ./languages -name \"*.po\" | xargs -I % msgmerge -o % % languages/messages.pot",
"i18n:make-mo": "wp i18n make-mo languages"
}
}