-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
40 lines (40 loc) · 1.08 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
{
"name": "microsoft/kiota-authentication-phpleague",
"description": "Authentication provider for Kiota using the PHP League OAuth 2.0 client to authenticate against the Microsoft Identity platform",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Microsoft Graph Client Tooling",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4 | ^8.0",
"league/oauth2-client": "^2.6.1",
"microsoft/kiota-abstractions": "^1.0.2",
"firebase/php-jwt": "^v6.0.0",
"ramsey/uuid": "^4.2.3",
"ext-openssl": "*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5.13",
"phpstan/phpstan": "^1.4.6"
},
"autoload": {
"psr-4": {
"Microsoft\\Kiota\\Authentication\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Microsoft\\Kiota\\Authentication\\Test\\": "tests/"
}
},
"config": {
"allow-plugins": {
"php-http/discovery": false
}
}
}