forked from ryelle/theme-directory-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 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
46
47
48
49
50
51
52
53
{
"name": "wordpress/theme-directory-tests",
"type": "project",
"license": "GPL-2.0-or-later",
"support": {
"issues": "https://github.com/WordPress/theme-directory-tests/issues"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"installer-paths": {
"plugins/{$name}/": ["type:wordpress-plugin"]
}
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org/"
},
{
"type": "package",
"package": [
{
"name": "wordpress-plugin/theme-check",
"type": "wordpress-plugin",
"version": "trunk",
"source": {
"type": "git",
"url": "https://github.com/WordPress/theme-check/",
"reference": "master"
}
}
]
}
],
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.6",
"squizlabs/php_codesniffer": "^3.5",
"phpcompatibility/php-compatibility": "^9.3",
"wp-coding-standards/wpcs": "^2.2",
"sirbrillig/phpcs-variable-analysis": "^2.8",
"wptrt/wpthemereview": "^0.2.1",
"wp-phpunit/wp-phpunit": "^5.4",
"wordpress-plugin/theme-check": "*"
},
"require": {
"composer/installers": "~1.0"
},
"scripts": {
"format": "phpcbf --standard=./config/phpcs.xml.dist --report-summary --report-source",
"lint": "phpcs --standard=./config/phpcs.xml.dist"
}
}