-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 941 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
{
"name": "bagisto-eu/azure-auth",
"type": "library",
"description": "Enable SSO for your Bagisto admin panel with Microsoft Azure",
"keywords": ["bagisto", "admin", "azure", "authentication", "sso", "microsoft entra"],
"homepage": "https://github.com/bagisto-europe/admin-azure-auth",
"license": "MIT",
"authors": [
{
"name": "Bagisto Europe",
"email": "info@bagisto.eu"
}
],
"require": {
"laravel/socialite": "^5.0",
"socialiteproviders/microsoft-azure": "^5.1"
},
"autoload": {
"psr-4": {
"Bagisto\\AzureAuth\\": "src/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Bagisto\\AzureAuth\\Providers\\AzureAuthServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}