-
Notifications
You must be signed in to change notification settings - Fork 785
/
Copy pathcomposer.json
75 lines (75 loc) · 2.29 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
{
"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": "[email protected]"
}
],
"require": {
"php": "^8.2",
"ext-json": "*",
"ext-openssl": "*",
"firebase/php-jwt": "^6.4",
"illuminate/auth": "^11.35|^12.0",
"illuminate/console": "^11.35|^12.0",
"illuminate/container": "^11.35|^12.0",
"illuminate/contracts": "^11.35|^12.0",
"illuminate/cookie": "^11.35|^12.0",
"illuminate/database": "^11.35|^12.0",
"illuminate/encryption": "^11.35|^12.0",
"illuminate/http": "^11.35|^12.0",
"illuminate/support": "^11.35|^12.0",
"league/oauth2-server": "^9.2",
"php-http/discovery": "^1.20",
"phpseclib/phpseclib": "^3.0",
"psr/http-factory-implementation": "*",
"symfony/console": "^7.1",
"symfony/psr-http-message-bridge": "^7.1"
},
"require-dev": {
"mockery/mockery": "^1.6",
"orchestra/testbench": "^9.9|^10.0",
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^11.5|^12.0"
},
"autoload": {
"psr-4": {
"Laravel\\Passport\\": "src/",
"Laravel\\Passport\\Database\\Factories\\": "database/factories/"
}
},
"autoload-dev": {
"psr-4": {
"Laravel\\Passport\\Tests\\": "tests/",
"Workbench\\App\\": "workbench/app/",
"Workbench\\Database\\Factories\\": "workbench/database/factories/"
}
},
"extra": {
"laravel": {
"providers": [
"Laravel\\Passport\\PassportServiceProvider"
]
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": false
}
},
"scripts": {
"post-autoload-dump": "@prepare",
"prepare": "@php vendor/bin/testbench package:discover --ansi"
},
"minimum-stability": "stable",
"prefer-stable": true
}