forked from CSharpRU/vault-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 1.03 KB
/
composer.json
File metadata and controls
40 lines (40 loc) · 1.03 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
40
{
"name": "csharpru/vault-php",
"description": "Best Vault client for PHP that you can find",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Yaroslav Lukyanov",
"email": "c_sharp@mail.ru"
}
],
"autoload": {
"psr-4": {"Vault\\": "src/"}
},
"repositories": [
{
"type": "git",
"url": "https://github.com/morozov/php-vcr"
}
],
"require": {
"php": "^7.2",
"ext-json": "*",
"psr/cache": "^1.0",
"psr/log": "^1.0",
"weew/helpers-array": "^1.3",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0"
},
"require-dev": {
"codeception/codeception": "^2.2",
"php-vcr/php-vcr": "dev-issues/289 as 1.4.5",
"alextartan/guzzle-psr18-adapter": "^1.2",
"laminas/laminas-diactoros": "^2.3",
"cache/array-adapter": "^1.0"
},
"suggest": {
"cache/array-adapter": "For usage with CachedClient class"
}
}