-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.35 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
53
54
{
"name": "uisits/laravel-oidc",
"description": "Shibboleth OIDC driver for Laravel Socialite",
"type": "library",
"license": "MIT",
"keywords": [
"Laravel", "Socialite", "Shibboleth", "Laravel Socialite Shibboleth Provider"
],
"support": {
"issues": "https://github.com/uisits/laravel-oidc/issues",
"source": "https://github.com/uisits/laravel-oidc"
},
"authors": [
{
"name": "Chinwal, Prasad"
}
],
"require": {
"illuminate/support": "^10.0",
"illuminate/filesystem": "^10.0",
"laravel/socialite": "^5.6"
},
"require-dev": {
"laravel/pint": "^1.10",
"pestphp/pest": "^1.0|^2.6",
"pestphp/pest-plugin-laravel": "^1.0|^2.0",
"mockery/mockery": "^1.5",
"phpunit/phpunit": "^9.0|^10.1",
"orchestra/testbench": "^7.24|^8.5"
},
"autoload": {
"psr-4": {
"UisIts\\Oidc\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"UisIts\\Oidc\\Test\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"UisIts\\Oidc\\ShibbolethServiceProvider"
]
}
},
"minimum-stability": "stable",
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}