-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
41 lines (41 loc) · 855 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
41
{
"name": "wapacro/az-keyvault-php",
"type": "library",
"description": "PHP Library to work with Azure KeyVault using managed identity",
"keywords": [
"azure",
"keyvault",
"secret"
],
"homepage": "https://github.com/wapacro/az-keyvault-php",
"license": "MIT",
"authors": [
{
"name": "Roman Ackermann",
"homepage": "https://github.com/wapacro"
}
],
"require": {
"guzzlehttp/guzzle": "^7.0",
"ext-json": "*",
"ext-gmp": "*",
"spatie/url": "^1.3",
"web-token/jwt-core": "^2.0",
"brick/math": "^0.9.1"
},
"autoload": {
"psr-4": {
"AzKeyVault\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AzKeyVault\\Tests\\": "tests/"
}
},
"require-dev": {
"ext-openssl": "*",
"phpunit/phpunit": "^9.0",
"friendsofphp/php-cs-fixer": "^2.16"
}
}