-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
37 lines (36 loc) · 936 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
30
31
32
33
34
35
36
37
{
"name": "tahsingokalp/laravel-ews-driver",
"description": "Adds Exchange Web Services Mail Support to Laravel.",
"keywords": ["laravel", "exchange", "ews"],
"homepage": "https://github.com/tahsingokalp/laravel-ews-driver",
"license": "Apache-2.0",
"authors": [
{
"name": "Tahsin Gökalp Şaan",
"email": "[email protected]"
}
],
"prefer-stable": true,
"require": {
"php": ">=8.1",
"php-ews/php-ews": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "6.*"
},
"autoload": {
"psr-4": {
"TahsinGokalp\\LaravelEwsDriver\\": "src/"
}
},
"support": {
"issues": "https://github.com/tahsingokalp/laravel-ews-driver/issues"
},
"extra": {
"laravel": {
"providers": [
"TahsinGokalp\\LaravelEwsDriver\\EwsServiceProvider"
]
}
}
}