-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
42 lines (42 loc) · 1.06 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
{
"name": "microsoft/kiota-abstractions",
"description": "Abstractions for Kiota",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Microsoft Graph Client Tooling",
"email": "graphtooling@service.microsoft.com",
"role": "Developer"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Microsoft\\Kiota\\Abstractions\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Microsoft\\Kiota\\Abstractions\\Tests\\": "tests/"
}
},
"require": {
"php": "^7.4 || ^8.0",
"php-http/promise": "~1.2.0",
"doctrine/annotations": "^1.13 || ^2.0",
"open-telemetry/sdk": "^1.0.0",
"ramsey/uuid": "^3 || ^4",
"stduritemplate/stduritemplate": "^0.0.53 || ^0.0.54 || ^0.0.55 || ^0.0.56 || ^0.0.57 || ^0.0.59 || ^1.0.0 || ^2.0.0",
"psr/http-message": "^1.1 || ^2.0"
},
"require-dev": {
"phpstan/phpstan": "^1.2.0",
"phpunit/phpunit": "^8.5.5 || ^9.3.5"
},
"config": {
"allow-plugins": {
"php-http/discovery": false
}
}
}