forked from jobilla/laravel-passport-revoke
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
33 lines (33 loc) · 792 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
{
"name": "jobilla/passport-revoke",
"description": "Revoke Laravel Passport tokens with a simple Artisan command",
"type": "library",
"require": {
"illuminate/console": "5.7.*",
"laravel/passport": "^7.0",
"illuminate/support": "5.7.*"
},
"require-dev": {
"phpunit/phpunit": "^7.5"
},
"license": "MIT",
"authors": [
{
"name": "Leo Sjöberg",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Jobilla\\PassportRevoke\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Jobilla\\PassportRevoke\\PassportRevokeServiceProvider"
]
}
}
}