-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (41 loc) · 1.05 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
{
"name": "ghost/ghost-auth",
"description": "基于laravel/socialite 开发的个人Oauth 2.0授权登陆.",
"keywords": ["oauth", "laravel"],
"license": "MIT",
"homepage": "https://github.com/",
"authors": [
{
"name": "Taylor Otwell",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1.3",
"ext-json": "*",
"guzzlehttp/guzzle": "~6.0",
"illuminate/http": "~5.7.0|~5.8.0|^6.0|^7.0",
"illuminate/support": "~5.7.0|~5.8.0|^6.0|^7.0",
"league/oauth1-client": "~1.0"
},
"autoload": {
"psr-4": {
"Ghost\\GhostAuth\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Ghost\\GhostAuth\\GhostAuthServiceProvider"
],
"aliases": {
"ghostAuth": "Ghost\\GhostAuth\\Facades\\GhostAuth"
}
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}