-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1.11 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
{
"name": "etsvthor/laravel-bifrost-bridge",
"description": "Connect a laravel application with the Bifrost oauth2 server",
"authors": [
{
"name": "Niek Brekelmans",
"email": "niekb@thor.edu"
},
{
"name": "Tom Janssen",
"email": "dododedodonl@thor.edu"
}
],
"homepage": "https://github.com/etsvthor/laravel-bifrost-bridge",
"require": {
"php": "~8.1.0 | ~8.2.0 | ~8.3.0",
"spatie/laravel-permission": "^4.0 | ^5.0 | ^6.0",
"laravel/framework": "^10.0 | ^11.0",
"laravel/socialite": "^5.1",
"spatie/laravel-data": "^4.0"
},
"autoload": {
"psr-4": {
"EtsvThor\\BifrostBridge\\": "src/"
}
},
"suggest": {
"laracasts/flash": "Show flash messages on login and logout",
"filament/notifications": "Show filament notifications on login and logout"
},
"license": "MIT",
"extra": {
"laravel": {
"providers": [
"EtsvThor\\BifrostBridge\\BifrostBridgeServiceProvider"
]
}
}
}