add deps for tests

This commit is contained in:
Julien Fastré 2014-12-23 10:06:06 +01:00
parent 677fe4d147
commit 9228b43802
5 changed files with 17 additions and 5 deletions

View File

@ -12,7 +12,10 @@ class AppKernel extends Kernel
new Chill\ReportBundle\ChillReportBundle(),
new Symfony\Bundle\TwigBundle\TwigBundle(),
new Chill\CustomFieldsBundle\ChillCustomFieldsBundle(),
new Doctrine\Bundle\DoctrineBundle\DoctrineBundle()
new Doctrine\Bundle\DoctrineBundle\DoctrineBundle(),
new Chill\MainBundle\ChillMainBundle(),
new Chill\PersonBundle\ChillPersonBundle(),
new \Symfony\Bundle\AsseticBundle\AsseticBundle(),
);
}

View File

@ -24,4 +24,7 @@ doctrine:
charset: UTF8
orm:
auto_generate_proxy_classes: "%kernel.debug%"
auto_mapping: true
auto_mapping: true
chill_main:
available_languages: [ fr, nl, en ]

View File

@ -3,4 +3,5 @@ parameters:
database_port: 5434
database_name: symfony
database_user: symfony
database_password: symfony
database_password: symfony
locale: fr

View File

@ -3,4 +3,5 @@ parameters:
database_port: 5434
database_name: symfony
database_user: symfony
database_password: symfony
database_password: symfony
locale: fr

View File

@ -27,8 +27,12 @@
"doctrine/common": "2.4.*@dev",
"doctrine/doctrine-bundle": "~1.2@dev",
"chill-project/main": "dev-master",
"chill-project/custom-fields": "dev-master"
"chill-project/custom-fields": "dev-master",
"chill-project/person": "dev-master"
},
"require-dev": {
"chill-project/main": "dev-master@dev",
"chill-project/custom-fields": "dev-master@dev",
"chill-project/person": "dev-master@dev"
}
}