forked from dcblogdev/laravel-microsoft-graph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·43 lines (43 loc) · 1.14 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
{
"name": "dcblogdev/laravel-microsoft-graph",
"description": "A Laravel Microsoft Graph API (Office365) package",
"license": "MIT",
"authors": [
{
"name": "David Carr",
"email": "dave@dcblog.dev",
"homepage": "https://dcblog.dev"
}
],
"homepage": "https://github.com/dcblogdev/laravel-microsoft-graph",
"keywords": [
"Laravel",
"MsGraph",
"Graph",
"Microsoft Graph",
"Office365",
"Microsoft365"
],
"require": {
"illuminate/support": "5.5.x|5.6.x|5.7.x|5.8.x|6.x|7.x|8.x|9.x",
"league/oauth2-client": "^1.4|^2",
"guzzlehttp/guzzle": "6.x|7.x",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"Dcblogdev\\MsGraph\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Dcblogdev\\MsGraph\\MsGraphServiceProvider"
],
"aliases": {
"MsGraph": "Dcblogdev\\MsGraph\\Facades\\MsGraph",
"MsGraphAdmin": "Dcblogdev\\MsGraph\\Facades\\MsGraphAdmin"
}
}
}
}