-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.11 KB
/
composer.json
File metadata and controls
45 lines (45 loc) · 1.11 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
41
42
43
44
45
{
"name": "kidfund/thin-transit-client",
"type": "library",
"description": "Lightweight PHP wrapper around Hashicorp Vault Transit",
"keywords": [
"kidfund",
"thin-transit-client",
"vault",
"hashicorp"
],
"homepage": "https://github.com/Kidfund/ThinTransitClient",
"license": "MIT",
"authors": [
{
"name": ":Tim Broder",
"email": "timothy.broder@gmail.com",
"homepage": "https://timbroder.com",
"role": "CTO"
}
],
"require": {
"php" : "~7.2",
"guzzlehttp/guzzle": "~6.0",
"illuminate/support": "5.*",
"illuminate/log": "5.*"
},
"require-dev": {
"phpunit/phpunit" : "~8.0",
"illuminate/container": "5.*",
"kidfund/monkey-patcher": "dev-master"
},
"autoload": {
"psr-4": {
"Kidfund\\ThinTransportVaultClient\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Kidfund\\ThinTransportVaultClient\\Test\\": "tests"
}
},
"scripts": {
"test": "phpunit"
}
}