-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
58 lines (57 loc) · 1.42 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
55
56
57
58
{
"name": "paubikas/laravel-msgraph-mailer",
"type": "library",
"description": "Laravel 9/10 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"
],
"license": "MIT",
"authors": [
{
"name": "Paulius Bikauskas",
"homepage": "https://github.com/paubikas"
}
],
"require": {
"php": ">=8.2",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.4.5",
"symfony/http-client": "v7.2.2",
"symfony/mailer": "^5.4|^6.0|^7.0",
"illuminate/support": "^10.0 | ^11.0",
"laravel/framework": "^10.0 | ^11.0"
},
"autoload": {
"psr-4": {
"LaravelMsGraphMailer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LaravelMsGraphMailer\\Test\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.1 | ^10.0",
"mockery/mockery": "^1.3",
"orchestra/testbench": "^8.0"
},
"scripts": {
"test": "phpunit",
"test:coverage": "phpunit --coverage-text --coverage-clover=coverage.clover"
},
"extra": {
"laravel": {
"providers": [
"LaravelMsGraphMailer\\MsGraphMailServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}