-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.19 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
{
"name": "apility/microsoft-graph-api",
"description": "This package provides a PHP client library for working with the Microsoft Graph API.",
"keywords": [
"microsoft",
"graph",
"api",
"laravel",
"package"
],
"license": "MIT",
"authors": [
{
"name": "Thomas Alrek",
"email": "[email protected]"
}
],
"type": "library",
"config": {
"platform": {
"php": "7.4"
}
},
"require": {
"php": "^7.4|^8.0",
"illuminate/cache": "^8.0",
"illuminate/support": "^8.0",
"illuminate/http": "^8.0",
"illuminate/routing": "^8.0",
"laravel/socialite": "^5.8",
"socialiteproviders/microsoft-azure": "^5.1",
"league/flysystem": "^1.0",
"league/flysystem-cached-adapter": "^1.1"
},
"require-dev": {
"illuminate/config": "^8.0",
"illuminate/container": "^8.0",
"larapack/dd": "^1.1",
"phpunit/phpunit": "^9.6"
},
"autoload": {
"psr-4": {
"Microsoft\\GraphAPI\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Microsoft\\GraphAPI\\ServiceProvider"
]
}
}
}