forked from adamelso/php-ews
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
29 lines (29 loc) · 861 Bytes
/
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
{
"name": "php-ews/php-ews",
"description": "The PHP Exchange Web Services library (php-ews) is intended to make communication with Microsoft Exchange servers using Exchange Web Services easier. It handles the NTLM authentication required to use the SOAP services and provides an object-oriented interface to the complex types required to form a request.",
"license": "MIT",
"authors": [
{
"name": "Adam Elsodaney",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "~5.4",
"ext-soap": "*"
},
"require-dev": {
"phpspec/phpspec": "~2",
"symfony/console": "~2"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-0": {
"": "src/"
}
}
}