-
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) · 1.06 KB
/
composer.json
File metadata and controls
39 lines (39 loc) · 1.06 KB
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-bundle",
"description": "Symfony bundle for HashiCorp Vault",
"license": "MIT",
"type": "symfony-bundle",
"authors": [
{
"name": "Jesper Kristensen",
"email": "cableman@linuxdev.dk",
"homepage": "https://linuxdev.dk",
"role": "Developer"
}
],
"require": {
"php": "^8.0",
"symfony/http-client": "^6.4 || ^7.0 || ^8.0",
"nyholm/psr7": "^1.8",
"itk-dev/vault": "^0.1.0",
"symfony/dependency-injection": "^6.4 || ^7.0 || ^8.0",
"symfony/config": "^6.4 || ^7.0 || ^8.0",
"symfony/http-kernel": "^6.4 || ^7.0 || ^8.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.64"
},
"autoload": {
"psr-4": {
"ItkDev\\VaultBundle\\": "src/"
}
},
"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"
]
}
}