forked from hafael/azure-mailer-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1.43 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
{
"name": "hafael/azure-mailer-driver",
"description": "Provides Microsoft Azure ACS integration for Symfony Mailer. Azure Communication Services allows you to easily add real-time multimedia voice, video, and telephony-over-IP communications features to your applications. The Communication Services Email client libraries also allow you to add chat and EMAIL functionality to your communications solutions.",
"homepage": "https://github.com/hafael/azure-mailer-driver",
"type": "library",
"license": "MIT",
"minimum-stability": "dev",
"keywords": ["azure", "php", "api", "client", "sdk", "ecs", "azure communication service", "microsoft", "email", "driver", "swift", "mailer", "laravel", "symfony"],
"require": {
"php": ">=8.1",
"symfony/mailer": "^5.4.21|^6.2.7"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"symfony/http-client": "^5.4|^6.0"
},
"authors": [
{
"name": "Rafael Villa Verde",
"email": "villa655321verde@gmail.com"
}
],
"conflict": {
"symfony/mime": "<6.2"
},
"autoload": {
"psr-4": {
"Hafael\\Azure\\Transport\\": ["src", "test"]
}
},
"scripts": {
"test": "./vendor/bin/phpunit"
},
"extra": {
"laravel": {
"providers": [
"Hafael\\Azure\\Transport\\AzureMailerServiceProvider"
]
}
}
}