-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
39 lines (39 loc) · 1.12 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": "nielslange/smntcs-retro",
"type": "package",
"description": "SMNTCS Retro is a minimalistic theme for the average nerd",
"keywords": [
"WordPress",
"Themes",
"SMNTCS Retro"
],
"homepage": "https://github.com/nielslange/smntcs-retro",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Niels Lange",
"email": "info@nielslange.de",
"homepage": "https://nielslange.de",
"role": "Developer"
}
],
"require": {
"php": ">=5.6"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"squizlabs/php_codesniffer": "^3.5",
"wp-coding-standards/wpcs": "^2.3",
"wptrt/wpthemereview": "^0.2.1",
"php-parallel-lint/php-parallel-lint": "^1.2"
},
"scripts": {
"checkcs": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs --runtime-set testVersion 7.3-",
"fixcs": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcbf --runtime-set testVersion 7.3-",
"lint": "@php ./vendor/bin/parallel-lint --exclude .git --exclude vendor ."
},
"support": {
"issues": "https://github.com/nielslange/smntcs-retro/issues",
"source": "https://github.com/nielslange/smntcs-retro"
}
}