-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 1.22 KB
/
composer.json
File metadata and controls
39 lines (39 loc) · 1.22 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": "secretary/core",
"description": "Secrets Manager for PHP",
"type": "library",
"license": "MIT",
"keywords": [
"secrets",
"vault",
"secretsmanager",
"keyvault",
"secretary"
],
"authors": [
{
"name": "Aaron Scherer",
"email": "aequasi@gmail.com"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.2",
"symfony/options-resolver": "^5.4 || ^6.0 || ^7.0 || ^8.0"
},
"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/"
]
}
}