-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathcomposer.json
40 lines (40 loc) · 1002 Bytes
/
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": "mittwald/vault-php",
"type": "library",
"license": "MIT",
"homepage": "https://www.mittwald.de/",
"description": "A PHP client library for 'Vault by HashiCorp'",
"require": {
"ext-json": "*",
"guzzlehttp/psr7": "^2.6",
"php": "^7.2.5 || ^8.0",
"psr/http-client": "^1.0"
},
"suggest": {
"php-http/curl-client": "CURL Client Adapter",
"tuupola/http-factory": "HTTP Factory"
},
"require-dev": {
"phpunit/phpunit": "9.6.19",
"vimeo/psalm": "5.23.1"
},
"authors": [
{
"name": "Marco Rieger",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"VaultPHP\\": "src\\VaultPHP\\"
}
},
"autoload-dev": {
"psr-4": {
"Test\\VaultPHP\\": "tests\\VaultPHP\\"
}
},
"scripts": {
"test": "php ./vendor/bin/phpunit --configuration ./phpunit.xml.dist"
}
}