forked from CSharpRU/vault-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1.04 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
{
"name": "csharpru/vault-php",
"description": "Best Vault client for PHP that you can find",
"type": "library",
"license": "MIT",
"keywords": [
"vault",
"hashicorp",
"secrets"
],
"authors": [
{
"name": "Yaroslav Lukyanov",
"email": "c_sharp@mail.ru"
}
],
"autoload": {
"psr-4": {"Vault\\": "src/"}
},
"require": {
"php": "^7.2 || ^8.0",
"ext-json": "*",
"psr/cache": "^1.0|^2.0|^3.0",
"psr/log": "^1.0|^2.0|^3.0",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0"
},
"require-dev": {
"codeception/codeception": "^4.1",
"php-vcr/php-vcr": "^1.5",
"alextartan/guzzle-psr18-adapter": "^1.2 || ^2.0",
"laminas/laminas-diactoros": "^2.3",
"cache/array-adapter": "^1.0",
"codeception/module-asserts": "^1.3",
"symfony/event-dispatcher": "<5.0"
},
"suggest": {
"cache/array-adapter": "For usage with CachedClient class"
}
}