forked from lexik/LexikMailerBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.17 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
{
"name": "lexik/mailer-bundle",
"type": "symfony-bundle",
"description": "This bundle allow you to manage some HTML email templates stored in your database. Templates are written with Twig and use I18N.",
"keywords": ["Symfony2", "bundle", "mail", "mailer"],
"homepage": "https://github.com/lexik/LexikMailerBundle",
"license": "MIT",
"authors": [
{
"name": "Laurent Heurtault",
"email": "[email protected]"
},
{
"name": "Dev Lexik",
"email": "[email protected]"
}
],
"require": {
"php": "7.3.*",
"symfony/framework-bundle": "^5.2",
"symfony/intl": "^5.2",
"swiftmailer/swiftmailer": ">=4.1.3|~5.0|~6.0",
"doctrine/orm": "~2.4",
"twig/twig": "~1.3|~2.0"
},
"require-dev": {
"symfony/validator": "5.2.*",
"symfony/doctrine-bridge": "^5.1",
"doctrine/data-fixtures": "~1.1",
"phpunit/phpunit": "9.5.2"
},
"autoload": {
"psr-4": { "Lexik\\Bundle\\MailerBundle\\": "" }
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}