-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
39 lines (39 loc) · 1.07 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
{
"name": "andrewdyer/slim3-mailer",
"description": "Email support for the Slim Framework using Twig and Swift Mailer.",
"type": "library",
"keywords": ["slim", "slim3", "slim-framework", "swiftmailer", "slim-mail", "slim-mailer", "mailer", "email", "emails"],
"homepage": "/~https://github.com/andrewdyer/slim3-mailer",
"license": "MIT",
"authors": [
{
"name": "Andrew Dyer",
"homepage": "https://andrewdyer.rocks",
"role": "developer"
}
],
"support": {
"source": "/~https://github.com/andrewdyer/slim3-mailer.git"
},
"autoload": {
"psr-4": {
"Anddye\\Mailer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Anddye\\Mailer\\Tests\\": "tests/"
}
},
"require": {
"php": ">=7.1",
"slim/slim": "^3.0",
"swiftmailer/swiftmailer": "^6.0",
"slim/twig-view": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"minimum-stability": "stable",
"prefer-stable": true
}