forked from jamesiarmes/php-ews
-
Notifications
You must be signed in to change notification settings - Fork 46
/
composer.json
49 lines (49 loc) · 1.13 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
{
"name": "garethp/php-ews",
"license": "BSD-3-Clause",
"description": "A PHP Library to interact with the Exchange SOAP service",
"keywords": [
"Microsoft Exchange",
"Exchange Web Services",
"SOAP",
"NTLM",
"EWS",
"php",
"email",
"calendar",
"contacts",
"push notification"
],
"require": {
"garethp/http-playback": "^2.0",
"ext-curl": "*",
"ext-soap": "*",
"ext-libxml": "*",
"ext-dom": "*",
"ext-simplexml": "*"
},
"scripts": {
"cs": "./vendor/bin/phpcs --standard=ruleset.xml -np src/ tests/ examples/",
"cbf": "./vendor/bin/phpcbf --standard=ruleset.xml -np src/ tests/ examples/",
"generate": "php bin/generateModels.php && composer cbf"
},
"autoload": {
"psr-4": {
"garethp\\ews\\": "src/",
"garethp\\ews\\Test\\": "tests/src"
},
"files": [
"src/Utilities/ensureIsArray.php",
"src/Utilities/ensureIsDateTime.php",
"src/Utilities/cloneValue.php",
"src/Utilities/getFolderIds.php"
]
},
"require-dev": {
"phpunit/phpunit": "^9.4 || ^8.5",
"squizlabs/php_codesniffer": "~3.6.0",
"mockery/mockery": "^1.3",
"goetas/xsd2php": "^2.1",
"goetas/xsd-reader": "^2.0-dev"
}
}