-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathcomposer.json
54 lines (54 loc) · 1.2 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
50
51
52
53
54
{
"name": "wapacro/laravel-msgraph-mail",
"type": "library",
"description": "Laravel mail driver to send emails using Microsoft Graph, supporting both personal accounts as well as work/school accounts (365/Exchange)",
"keywords": [
"laravel",
"mail",
"exchange",
"365",
"microsoft",
"graph"
],
"homepage": "https://github.com/wapacro/laravel-msgraph-mail",
"license": "MIT",
"authors": [
{
"name": "Roman Ackermann",
"homepage": "https://github.com/wapacro"
}
],
"require": {
"php": ">=7.4",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.0",
"illuminate/mail": "^8.0",
"illuminate/support": "^8.0"
},
"autoload": {
"psr-4": {
"LaravelMsGraphMail\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LaravelMsGraphMail\\Test\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.1",
"mockery/mockery": "^1.3",
"orchestra/testbench": "^6.0"
},
"scripts": {
"test": "phpunit",
"test:coverage": "phpunit --coverage-text --coverage-clover=coverage.clover"
},
"extra": {
"laravel": {
"providers": [
"LaravelMsGraphMail\\MsGraphMailServiceProvider"
]
}
}
}