-
Notifications
You must be signed in to change notification settings - Fork 23
/
composer.json
33 lines (33 loc) · 1.01 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
{
"name": "mremi/contact-bundle",
"type": "symfony-bundle",
"description": "Implementation of a contact form for Symfony2",
"keywords": ["Symfony", "contact", "form"],
"homepage": "https://github.com/mremi/ContactBundle",
"license": "MIT",
"authors": [
{
"name": "Rémi Marseille",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.9",
"swiftmailer/swiftmailer": "~4.3|~5",
"symfony/form": "~2.8|~3.0",
"symfony/framework-bundle": "~2.8|~3.0",
"twig/twig": "~1.20|~2.0"
},
"require-dev": {
"fabpot/php-cs-fixer": "~0.1|~1.0",
"phpunit/phpunit": "~4.8|~5.0",
"symfony/phpunit-bridge": "~2.8|~3.0"
},
"suggest": {
"mremi/templating-extra-bundle": "In order to profile pages, get some statistics and enhance front office development"
},
"autoload": {
"psr-0": { "Mremi\\ContactBundle": "" }
},
"target-dir": "Mremi/ContactBundle"
}