-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
36 lines (36 loc) · 1.05 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
{
"name": "themegrill/themegrill-demo-importer",
"description": "Import your demo content, widgets and theme settings with one click for ThemeGrill official themes.",
"homepage": "https://themegrill.com/plugins/demo-importer/",
"type": "wordpress-plugin",
"license": "GPL-2.0+",
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"composer/installers": "~1.2"
},
"require-dev": {
"wpeverest/wpeverest-sniffs": "^0.0.2",
"wp-cli/i18n-command": "^2.2.5"
},
"scripts": {
"phpcs": [
"phpcs -s -p"
],
"phpcs-pre-commit": [
"phpcs -s -p -n"
],
"phpcbf": [
"phpcbf -p"
],
"make-pot": [
"wp i18n make-pot . languages/themegrill-demo-importer.pot --exclude=\"vendor,node_modules,.github,.wordpress.org\" --slug=themegrill-demo-importer"
]
},
"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"
}
}
}