-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
36 lines (36 loc) · 1.09 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": "zorbus/contact-bundle",
"type": "symfony-bundle",
"description": "A Symfony2 Contact bundle",
"keywords": ["doctrine", "orm", "bundle", "Symfony2", "contact"],
"homepage": "https://github.com/Zorbus",
"license": "MIT",
"authors": [
{
"name": "Tito Miguel Costa",
"email": "zorbus@titomiguelcosta.com",
"homepage": "http://www.titomiguelcosta.com/"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=5.3.2",
"symfony/framework-bundle": ">=2.1,<2.2-dev",
"stof/doctrine-extensions-bundle": "*",
"doctrine/doctrine-bundle": "*"
},
"suggest": {
"twig/twig": "Great template language",
"doctrine/doctrine-fixtures-bundle": "To load fixtures data",
"doctrine/doctrine-migrations-bundle": "To alter database schema in a secure way"
},
"autoload": {
"psr-0": { "Zorbus\\ContactBundle": "" }
},
"target-dir": "Zorbus/ContactBundle",
"extra": {
"branch-alias": {
"dev-master": "0.0.*-dev"
}
}
}