-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
executable file
·36 lines (36 loc) · 972 Bytes
/
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
{
"name": "designmynight/laravel-oauth-introspection-client",
"description": "Laravel package for letting a resource owner verify OAuth2 access tokens with a remote authorization server",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Steve Porter",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"guzzlehttp/guzzle": "^7.2",
"laravel/framework": "^9.0",
"laravel/passport": "^10.0"
},
"autoload": {
"psr-4": {"DesignMyNight\\Laravel\\OAuth2\\": "src/"}
},
"autoload-dev": {
"psr-4": {
"DesignMyNight\\Laravel\\OAuth2\\Tests\\": "tests"
}
},
"require-dev": {
"orchestra/testbench": "^7.0"
},
"extra": {
"laravel": {
"providers": [
"DesignMyNight\\Laravel\\OAuth2\\IntrospectMiddlewareServiceProvider"
]
}
}
}