-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
38 lines (38 loc) · 1.03 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
{
"name": "symplicity/outlook",
"type": "library",
"description": "Outlook",
"keywords": ["outlook", "calendar", "sync", "synchronization", "php-outlook365-sync"],
"homepage": "https://www.symplicity.com",
"license": "MIT",
"require": {
"ext-json": "*",
"php": "^8.1",
"microsoft/microsoft-graph": "2.2.*",
"microsoft/microsoft-graph-core": "2.0.*",
"microsoft/kiota-authentication-phpleague": "1.0.*",
"monolog/monolog" : "^2.3"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.7.2",
"friendsofphp/php-cs-fixer" : "^v3.40.2",
"phpunit/phpunit": "^10.5.1",
"phpstan/phpstan": "^1.10"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Symplicity\\Outlook\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Symplicity\\Outlook\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"php-http/discovery": false
}
}
}