If you wish to use DoctrineMigrationsBundle or DoctrineFixturesBundle then you have to add them into your
composer.json
manually.
In order to use these bundles add the following lines to require
section of your composer.json
file:
"doctrine/doctrine-migrations-bundle": ">1.0.0-beta1@dev", "doctrine/migrations": ">1.0-ALPHA1@dev", "doctrine/doctrine-fixtures-bundle": ">2.1.0-ALPHA@dev", "doctrine/data-fixtures": ">1.0.0-ALPHA3@dev"
php composer.phar require "epam/ci-bundle=@dev"
Edit your app/AppKernel.php
file and add the following lines
if (in_array($this->getEnvironment(), array('dev', 'test'))) { //... $bundles[] = new Epam\CiBundle\EpamCiBundle(); }
If you installed DoctrineMigrationsBundle and DoctrineFixturesBundle then add also the following lines
new Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle(), new Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle(),
Add /build.properties
to .gitignore