-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
36 lines (36 loc) · 1.24 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": "frequence-web/contact-bundle",
"type": "symfony-bundle",
"description": "Event-based contact bundle",
"keywords": ["contact", "bundle", "event"],
"license": "MIT",
"authors": [
{
"name": "Yohan Giarelli",
"homepage": "http://github.com/yohang"
}
],
"require": {
"php": "^5.3.3 || ^7.0",
"symfony/framework-bundle": "~2.8 || ^3.0",
"symfony/form": "~2.8 || ^3.0",
"symfony/twig-bundle": "~2.8 || ^3.0",
"symfony/validator": "~2.8 || ^3.0"
},
"require-dev": {
"phpunit/phpunit": "^3.0",
"symfony/browser-kit": "~2.1 || ^3.0",
"symfony/css-selector": "~2.1 || ^3.0",
"symfony/class-loader": "~2.1 || ^3.0",
"symfony/dom-crawler": "~2.1 || ^3.0",
"symfony/finder": "~2.1 || ^3.0",
"symfony/swiftmailer-bundle": "~2.1 || ^2.5"
},
"suggest": {
"symfony/swiftmailer-bundle": "If your want to use the (default) mail listener."
},
"autoload": {
"psr-0": { "FrequenceWeb\\Bundle\\ContactBundle": "" }
},
"target-dir": "FrequenceWeb/Bundle/ContactBundle"
}