-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
36 lines (36 loc) · 1.12 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
{
"name": "wemakecustom/swiftmailer-twig-bundle",
"type": "symfony-bundle",
"license": "MIT",
"keywords": ["SwiftMailer", "Twig", "Bridge", "FOSUB", "EMail Templating"],
"authors": [
{
"name": "Sébastin Lavoie",
"email": "[email protected]"
},
{
"name": "Mathieu Lemoine",
"email": "[email protected]"
}
],
"description": "WeMakeCustom Bridge between SwiftMailer Twig",
"autoload": {
"psr-4": { "WMC\\SwiftmailerTwigBundle\\": "" }
},
"require": {
"php": ">=5.3.3",
"swiftmailer/swiftmailer": ">=4.2.0,~5.0,~6.0",
"twig/twig": "~1.23|~2.0",
"symfony/dom-crawler": "~2.3|~3.0"
},
"suggests": {
"symfony/swiftmailer-bundle": "With symfony/twig-bundle to have the complete Symfony integration",
"symfony/twig-bundle": "With symfony/swiftmailer-bundle to have the complete Symfony integration",
"friendsofsymfony/user-bundle": "FOSUB integration"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}