-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·52 lines (52 loc) · 1.52 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": "jurager/passport",
"description": "Laravel package to implement single sign-on method",
"keywords": [
"laravel",
"sso",
"passport",
"authorization",
"auth"
],
"homepage": "https://github.com/jurager/passport",
"license": "MIT",
"authors": [
{
"name": "Yuri Gerassimov",
"email": "jurager01@gmail.com"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"ext-pdo": "*",
"symfony/http-foundation": "~5.0|~6.0|~7.0",
"illuminate/config": "~9.0|~10.0|~11.0",
"illuminate/auth": "~9.0|~10.0|~11.0",
"illuminate/database": "~9.0|~10.0|~11.0",
"illuminate/collections": "~9.0|~10.0|~11.0",
"illuminate/cookie": "~9.0|~10.0|~11.0",
"illuminate/http": "~9.0|~10.0|~11.0",
"illuminate/contracts": "~9.0|~10.0|~11.0",
"illuminate/support": "~9.0|~10.0|~11.0",
"illuminate/macroable": "~9.0|~10.0|~11.0",
"illuminate/routing": "~9.0|~10.0|~11.0",
"illuminate/session": "~9.0|~10.0|~11.0",
"illuminate/queue": "~9.0|~10.0|~11.0",
"illuminate/console": "~9.0|~10.0|~11.0",
"guzzlehttp/guzzle": "~6.0|~7.0",
"guzzlehttp/psr7": "^2.4.5"
},
"autoload": {
"psr-4": {
"Jurager\\Passport\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Jurager\\Passport\\PassportServiceProvider"
]
}
}
}