-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
39 lines (39 loc) · 1.3 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
{
"name": "dshanske/iw26",
"description": "Indieweb Publisher Theme for WordPress",
"type": "wordpress-theme",
"license": "GPLv2 or later",
"authors": [
{
"name": "David Shanske",
"email": "david@shanske.com"
}
],
"extra": {
},
"require": {
"php": ">=5.3.0",
"composer/installers": "~1.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "*",
"squizlabs/php_codesniffer": "*",
"phpcompatibility/php-compatibility": "*",
"wp-coding-standards/wpcs": "*",
"phpcompatibility/phpcompatibility-wp": "*",
"php-parallel-lint/php-parallel-lint": "^1.2",
"wp-cli/i18n-command": "^2.2",
"sebastian/phpcpd": "^5.0",
"wptrt/wpthemereview": "^0.2.1"
},
"scripts": {
"lint:phpcpd": "./vendor/bin/phpcpd --fuzzy --exclude .git --exclude vendor --exclude node_modules .",
"lint:wpcs": "./vendor/bin/phpcs",
"lint:wpcs-fix": "./vendor/bin/phpcbf",
"make-pot": "./vendor/bin/wp i18n make-pot . languages/indieweb-publisher.pot",
"lint:php": "@php ./vendor/bin/parallel-lint --exclude .git --exclude vendor --exclude node_modules .",
"install-codestandards": [
"Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run"
]
}
}