-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·31 lines (31 loc) · 858 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
{
"name": "arietimmerman/laravel-oauth-introspect-middleware",
"description": "Laravel Middleware for letting a resource owner verify a OAuth2 access tokens with a remote authorization server",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Arie Timmerman",
"email": "arietimmerman@gmail.com"
}
],
"require": {
"php": "^7.0|^8.0",
"guzzlehttp/guzzle": "^6.0|^7.0",
"illuminate/support": "^6.0|^7.0|^8.0"
},
"autoload": {
"psr-4": {
"ArieTimmerman\\Laravel\\OAuth2\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ArieTimmerman\\Laravel\\OAuth2\\Tests\\": "tests"
}
},
"require-dev": {
"orchestra/testbench": "~3.0",
"squizlabs/php_codesniffer": "^3.5"
}
}