-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
48 lines (48 loc) · 1.44 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
{
"name": "secretary/core",
"description": "Secrets Manager for PHP",
"type": "library",
"license": "MIT",
"keywords": [
"secrets",
"vault",
"secretsmanager",
"keyvault",
"secretary"
],
"authors": [
{
"name": "Aaron Scherer",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.0",
"symfony/options-resolver": "^5.4 || ^6.0 || ^7.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"mockery/mockery": "^1.4"
},
"suggest": {
"secretary/aws-secrets-manager-adapter": "For reading secrets from AWS Secrets Manager",
"secretary/hashicorp-vault-adapter": "For reading secrets from Hashicorp Vault",
"secretary/psr6-cache-adapter": "For caching secrets using a PSR-6 Cache Interface",
"secretary/psr16-cache-adapter": "For caching secrets using a PSR-16 SimpleCache Interface",
"secretary/secretary-bundle": "For integrating Secretary with the Symfony Framework"
},
"autoload": {
"psr-4": {
"Secretary\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"autoload-dev": {
"psr-4": {
"Secretary\\Tests\\": "tests/"
}
}
}