-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
36 lines (36 loc) · 959 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": "jobilla/passport-revoke",
"description": "Revoke Laravel Passport tokens with a simple Artisan command",
"type": "library",
"require": {
"illuminate/console": "5.7.*|5.8.*|^6.0|^7|^8",
"laravel/passport": "^7.0|^8|^9|^10",
"illuminate/support": "5.7.*|5.8.*|^6.0|^7|^8"
},
"require-dev": {
"phpunit/phpunit": "^7.5|^8|^9",
"orchestra/testbench": "3.7.*|3.8.*",
"ramsey/uuid": "^3.8|^4.0",
"mockery/mockery": "^1.2"
},
"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"
]
}
}
}