-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json
52 lines (52 loc) · 1.4 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
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "insites-consulting/azure-key-vault",
"description": "Allow secrets to be easily fetched from an Azure Key Vault from within a Laravel application",
"type": "library",
"license": "proprietary",
"authors": [
{
"name": "Stephen Smith",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4|^8.0|^8.1",
"illuminate/cache": "^8||^9",
"illuminate/http": "^8||^9",
"illuminate/support": "^8|^9"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"orchestra/testbench": "^6.9",
"guzzlehttp/guzzle": "^7.4",
"squizlabs/php_codesniffer": "^3.5",
"ext-json": "*"
},
"autoload": {
"files": [
"src/helpers.php"
],
"psr-4": {
"InsitesConsulting\\AzureKeyVault\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"InsitesConsulting\\AzureKeyVault\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"lint": "vendor/bin/phpcs -n --standard=PSR12 ./src ./config"
},
"extra": {
"laravel": {
"providers": [
"InsitesConsulting\\AzureKeyVault\\ServiceProvider"
],
"aliases": {
"Vault": "InsitesConsulting\\AzureKeyVault\\Facade"
}
}
}
}