-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
executable file
·35 lines (35 loc) · 1017 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
{
"name": "semhoun/slim-mailer",
"description": "Email support for the Slim 4 Framework using Twig and Swift Mailer.",
"type": "library",
"keywords": ["slim", "slim4", "slim-framework", "swiftmailer", "slim-mail", "slim-mailer", "mailer", "email", "emails"],
"homepage": "https://github.com/semhoun/slim-mailer",
"license": "MIT",
"authors": [
{
"name": "Nathanael Semhoun",
"email": "[email protected]",
"homepage": "http://semhoun.net",
"role": "developer"
}
],
"support": {
"source": "https://github.com/semhoun/slim-mailer.git"
},
"require": {
"php": ">=7.1",
"slim/twig-view": "3.x@dev",
"swiftmailer/swiftmailer": "^6.2"
},
"require-dev": {
"php-di/php-di": "^6.0",
"psr/http-factory": "^1.0",
"slim/slim": "^4.1"
},
"autoload": {
"psr-4": {
"Semhoun\\": "src/"
}
},
"prefer-stable": true
}