forked from ColoredCow/laravel-gsuite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.52 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.52 KB
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
{
"name": "oeleco/larasuite",
"description": "A Laravel package to setup GSuite Admin SDK",
"keywords": ["gsuite", "laravel"],
"homepage": "https://github.com/oele-code/larasuite",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.2",
"illuminate/support": "~5.7.0|~5.8.0|^6.0|^7.0",
"google/apiclient": "^2.0"
},
"authors": [
{
"name": "osmell caicedo",
"email": "correo.oele@gmail.com"
}
],
"autoload": {
"psr-4": {
"oeleco\\Larasuite\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"oeleco\\Larasuite\\Providers\\GSuiteServiceProvider"
],
"aliases": {
"GSuiteUserService": "oeleco\\Larasuite\\Facades\\GSuiteUserService",
"GSuiteOrgUnitService": "oeleco\\Larasuite\\Facades\\GSuiteOrgUnitService",
"GSuiteGroupService": "oeleco\\Larasuite\\Facades\\GSuiteGroupService",
"GSuiteMemberService": "oeleco\\Larasuite\\Facades\\GSuiteMemberService"
}
}
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"mockery/mockery": "^1.1",
"pestphp/pest": "^0.2.3",
"pestphp/pest-plugin-laravel": "^0.2.0",
"orchestra/testbench": "^5.3",
"pestphp/pest-plugin-faker": "^0.2.0"
}
}