This repository has been archived by the owner on Jun 8, 2024. It is now read-only.
forked from laravel/passport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
76 lines (76 loc) · 2.06 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "laravel/passport",
"description": "Laravel Passport provides OAuth2 server support to Laravel.",
"keywords": [
"laravel",
"passport",
"oauth"
],
"license": "MIT",
"support": {
"issues": "https://github.com/laravel/passport/issues",
"source": "https://github.com/laravel/passport"
},
"authors": [
{
"name": "Taylor Otwell",
"email": "taylor@laravel.com"
}
],
"require": {
"php": "^7.3|^8.0",
"ext-json": "*",
"firebase/php-jwt": "^6.0",
"illuminate/auth": "^8.37|^9.0",
"illuminate/console": "^8.37|^9.0",
"illuminate/container": "^8.37|^9.0",
"illuminate/contracts": "^8.37|^9.0",
"illuminate/cookie": "^8.37|^9.0",
"illuminate/database": "^8.37|^9.0",
"illuminate/encryption": "^8.37|^9.0",
"illuminate/http": "^8.37|^9.0",
"illuminate/support": "^8.37|^9.0",
"lcobucci/jwt": "^3.4|^4.0",
"league/oauth2-server": "dev-master",
"nyholm/psr7": "^1.3",
"phpseclib/phpseclib": "^2.0|^3.0",
"symfony/psr-http-message-bridge": "^2.0"
},
"require-dev": {
"mockery/mockery": "^1.0",
"orchestra/testbench": "^6.0|^7.0",
"phpunit/phpunit": "^9.3"
},
"repositories": [
{
"type": "vcs",
"url": "git@github.com:Bloemendaal/oauth2-server.git"
}
],
"autoload": {
"psr-4": {
"Laravel\\Passport\\": "src/",
"Laravel\\Passport\\Database\\Factories\\": "database/factories/"
}
},
"autoload-dev": {
"psr-4": {
"Laravel\\Passport\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "10.x-dev"
},
"laravel": {
"providers": [
"Laravel\\Passport\\PassportServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}