-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
51 lines (51 loc) · 1.43 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
{
"name": "kindred/kwc-usgs",
"type": "wordpress-plugin",
"license": "GPLv2 or later",
"authors": [
{
"name": "Chris Kindred",
"email": "cmkindred@gmail.com"
}
],
"autoload": {
"psr-4": {
"Kindred\\USGS\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Kindred\\Tests\\": "tests"
}
},
"require-dev": {
"phpcompatibility/phpcompatibility-wp": "^2.1",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"automattic/vipwpcs": "^2.3",
"phpunit/phpunit": "^6",
"yoast/phpunit-polyfills": "^1.0",
"assertwell/wp-core-test-framework": "^0.2.0",
"phpstan/phpstan": "^1.5",
"php-stubs/wordpress-tests-stubs": "^5.8",
"szepeviktor/phpstan-wordpress": "^1.0",
"phpstan/extension-installer": "^1.1"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
},
"scripts": {
"tests:all": [
"@tests:compat",
"@tests:phpcs",
"@tests:unit",
"@tests:analysis"
],
"tests:phpcs": "vendor/bin/phpcs",
"tests:unit": "vendor/bin/phpunit",
"tests:analysis": "vendor/bin/phpstan --memory-limit=256M",
"tests:compat": "vendor/bin/phpcs --standard=phpcompat.xml.dist --report=summary"
}
}