-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
42 lines (42 loc) · 1.06 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
{
"name": "pantheon-systems/wpunit-helpers",
"description": "Unified scripts for installing and running automated WP Unit Tests.",
"type": "composer-plugin",
"license": "MIT",
"authors": [
{
"name": "Pantheon",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"composer-plugin-api": "^2.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.7"
},
"autoload": {
"psr-4": {
"Pantheon\\WPUnitHelpers\\": "src/"
}
},
"extra": {
"class": "Pantheon\\WPUnitHelpers\\Plugin"
},
"scripts": {
"shellcheck": [
"shellcheck bin/*",
"shellcheck .github/workflows/bin/*"
],
"phpcs": "phpcs --standard=PSR2 src/",
"phplint": "find src/ -name '*.php' -exec php -l {} \\;",
"lint": [
"@shellcheck",
"@phpcs",
"@phplint"
],
"phpunit": "echo 'Nothing to see here.'"
}
}