-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
56 lines (56 loc) · 1.54 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
50
51
52
53
54
55
56
{
"name": "coloredcow/laravel-gsuite",
"description": "A Laravel package to setup Google OAuth and GSuite Admin SDK",
"keywords": ["coloredcow", "gsuite", "socialite", "laravel"],
"homepage": "https://github.com/coloredcow/laravel-gsuite",
"license": "MIT",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/ColoredCow/google-api-php-client"
},
{
"type": "vcs",
"url": "https://github.com/ColoredCow/google-auth-library-php"
}
],
"require": {
"php": "^7.3|^8.0",
"laravel/socialite": "^3.0|^4.0|^5.0",
"google/auth": "^1.3",
"google/apiclient": "^2.2",
"doctrine/dbal": "^2.8"
},
"authors": [
{
"name": "ColoredCow",
"email": "[email protected]",
"homepage": "https://coloredcow.com"
}
],
"autoload": {
"psr-4": {
"ColoredCow\\LaravelGSuite\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"ColoredCow\\LaravelGSuite\\Test\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"ColoredCow\\LaravelGSuite\\Providers\\GSuiteServiceProvider"
],
"aliases": {
"GSuiteUserService": "ColoredCow\\LaravelGSuite\\Facades\\GSuiteUserService"
}
}
},
"require-dev": {
"orchestra/testbench": "~3.0",
"phpunit/phpunit": "^7.3",
"mockery/mockery": "^1.1"
}
}