forked from uspdev/senhaunica-socialite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (36 loc) · 1.03 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
{
"name": "uspdev/senhaunica-socialite",
"description": "Senhaunica OAuth1 Provider for Laravel Socialite",
"minimum-stability": "dev",
"homepage": "https://github.com/uspdev/senhaunica-socialite",
"type": "library",
"license": "GPL-2.0-or-later",
"authors": [{
"name": "Thiago Gomes Veríssimo",
"email": "[email protected]",
"homepage": "https://github.com/thiagogomesverissimo"
}],
"require": {
"php": ">=7.1.3",
"laravel/socialite": "^5.0",
"socialiteproviders/manager": "^3.4.2 | ^4.0",
"spatie/laravel-permission": "^4.2 | ^5.0 | ^6.0",
"doctrine/dbal": "^3.1",
"kyslik/column-sortable" : "^6.5"
},
"autoload": {
"psr-4": {
"Uspdev\\SenhaunicaSocialite\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"extra": {
"laravel": {
"providers": [
"Uspdev\\SenhaunicaSocialite\\SenhaunicaServiceProvider"
]
}
}
}