forked from adaojunior/passport-social-grant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.17 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
{
"name": "adaojunior/passport-social-grant",
"description": "Social grant for Laravel Passport",
"type": "library",
"keywords": [
"oauth",
"guard",
"social",
"laravel",
"passport"
],
"homepage": "https://github.com/adaojunior/passport-social-grant",
"license": "MIT",
"authors": [
{
"name": "Adão Júnior",
"email": "dev@pardim.com",
"homepage": "https://github.com/adaojunior",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Adaojunior\\PassportSocialGrant\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Adaojunior\\PassportSocialGrant\\Tests\\": "tests/"
}
},
"require": {
"php": "^7.2|^8.0",
"laravel/passport": "^8.0|^9.0|^10.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5|^9.0"
},
"scripts": {
"test": "vendor/bin/phpunit --colors=always"
},
"extra": {
"laravel": {
"providers": [
"Adaojunior\\PassportSocialGrant\\SocialGrantServiceProvider"
]
}
}
}