-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
50 lines (50 loc) · 1.59 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
{
"name": "pantheon-systems/pantheon-hud",
"type": "wordpress-plugin",
"description": "Provide situational awareness of the Pantheon platform from within your WordPress dashboard.",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Pantheon",
"email": "[email protected]"
},
{
"name": "Daniel Bachhuber",
"email": "[email protected]"
}
],
"require-dev": {
"pantheon-systems/pantheon-wordpress-upstream-tests": "dev-master",
"pantheon-systems/pantheon-wp-coding-standards": "^2.0",
"phpunit/phpunit": "^9",
"yoast/phpunit-polyfills": "^2.0",
"symfony/yaml": "^5.4 || ^6",
"pantheon-systems/wpunit-helpers": "^2.0"
},
"autoload-dev": {
"psr-4": {
"PantheonSystems\\WPSamlAuth\\Behat\\": "tests/behat/bootstrap/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"lint": [
"@phpcs",
"@phplint"
],
"phpcs": "phpcs",
"phpcbf": "phpcbf",
"phplint": "find . -type f -name '*.php' -not -path './vendor/*' -not -path './tests/*' -exec php -l {} \\;",
"phpunit": "phpunit --do-not-cache-result",
"test": "@phpunit",
"test:install": "bin/install-local-tests.sh --no-db",
"test:install:withdb": "bin/install-local-tests.sh"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"pantheon-systems/wpunit-helpers": true
}
}
}