-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
38 lines (38 loc) · 1.03 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
{
"name": "pantheon-systems/terminus-secrets-manager-plugin",
"description": "Secrets handling plugin for Terminus",
"type": "terminus-plugin",
"license": "MIT",
"autoload": {
"psr-4": { "Pantheon\\TerminusSecretsManager\\": "src" }
},
"autoload-dev": {
"psr-4": {
"Pantheon\\TerminusSecretsManager\\Tests\\Functional\\": "tests/Functional/"
}
},
"require-dev": {
"phpunit/phpunit": "^9",
"symfony/yaml": "^5",
"squizlabs/php_codesniffer": "^3.6"
},
"scripts": {
"cs": "phpcs --standard=PSR2 -n src",
"cbf": "phpcbf --standard=PSR2 -n src",
"lint": "find src -name '*.php' -print0 | xargs -0 -n1 php -l",
"functional": "phpunit --colors=always tests",
"fix":[
"phpcbf --standard=psr2 ./src"
],
"test": [
"@lint",
"@cs",
"@functional"
]
},
"extra": {
"terminus": {
"compatible-version": "^3"
}
}
}