forked from grappler/ns-theme-check
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.26 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
42
43
44
45
{
"name": "wptrt/theme-sniffer",
"type": "wordpress-plugin",
"keywords": ["plugin", "phpcs", "standards", "WordPress"],
"description": "Theme Sniffer plugin which uses PHP_CodeSniffer for automatic theme checking.",
"license": "MIT",
"authors": [{
"name" : "Contributors",
"homepage": "https://github.com/WPTRT/theme-sniffer/graphs/contributors"
}, {
"name": "Denis Žoljom",
"homepage": "https://github.com/dingo-d",
"role": "Lead developer"
}],
"require": {
"php": ">=7.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.5.0",
"michelf/php-markdown": "^1.8",
"squizlabs/php_codesniffer": "^3.3.0",
"wptrt/wpthemereview": "^0.2.0"
},
"require-dev": {
"phpcompatibility/php-compatibility": "^9.0",
"roave/security-advisories" : "dev-master"
},
"autoload": {
"classmap": [
"src/",
"views/"
]
},
"scripts": {
"phpcs-i": "@php ./vendor/bin/phpcs -i",
"check-cs": "@php ./vendor/bin/phpcs --ignore=*/vendor/*,*/node_modules/*",
"fix-cs": "@php ./vendor/bin/phpcbf --ignore=*/vendor/*,*/node_modules/*"
},
"config": {
"sort-packages": true,
"optimize-autoloader": true
},
"support": {
"issues": "https://github.com/WPTRT/theme-sniffer/issues",
"source": "https://github.com/WPTRT/theme-sniffer"
}
}