-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 947 Bytes
/
composer.json
File metadata and controls
39 lines (39 loc) · 947 Bytes
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
{
"name": "itk-dev/vault",
"type": "library",
"description": "Library to communicate with Hashicorp Vault",
"keywords": ["Hashicorp", "vault", "approle", "e"],
"homepage": "https://github.com/itk-dev",
"license": "MIT",
"authors": [
{
"name": "Jesper Kristensen",
"email": "cableman@linuxdev.dk",
"homepage": "https://linuxdev.dk",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"ItkDev\\Vault\\": "src/Vault"
}
},
"require": {
"php": ">=8.2",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.1",
"psr/simple-cache": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^11.3",
"friendsofphp/php-cs-fixer": "^3.64"
},
"scripts": {
"coding-standards-apply": [
"PHP_CS_FIXER_IGNORE_ENV=1 vendor/bin/php-cs-fixer fix"
],
"coding-standards-check": [
"PHP_CS_FIXER_IGNORE_ENV=1 vendor/bin/php-cs-fixer fix --dry-run"
]
}
}