-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
41 lines (41 loc) · 1.29 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
{
"name": "wp-blank-slate/blank-slate",
"description": "Provides a blank page template for use with WordPress page builders.",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Aaron Reimann",
"homepage": "https://aaronreimann.com/"
},
{
"name": "Micah Wood",
"homepage": "http://wpscholar.com"
}
],
"support": {
"source": "https://github.com/wp-blank-slate/blank-slate",
"issues": "https://github.com/wp-blank-slate/blank-slate/issues"
},
"require-dev": {
"wpscholar/phpcs-standards-wpscholar": "^1.0",
"wp-cli/wp-cli": "^2.4",
"wp-cli/i18n-command": "^2.2"
},
"scripts": {
"fix": [
"vendor/bin/phpcbf . --standard=WPScholar"
],
"i18n": [
"vendor/bin/wp i18n make-pot . ./languages/blank-slate.pot --headers='{\"POT-Creation-Date\":null}'"
],
"lint": [
"vendor/bin/phpcs . --standard=WPScholar -s"
]
},
"scripts-descriptions": {
"fix": "Automatically fix coding standards issues where possible.",
"i18n": "Generate a .pot file for translation.",
"lint": "Check files against coding standards."
}
}