IadCbBundle

Iad club business Bundle

Build Status

SensioLabsInsight

Bundles

Installation

Require the iad-holding/cb-bundle package in your composer.json and update your dependencies.

$ composer require iad-holding/cb-bundle

Register the bundle in the app/AppKernel.php:

// app/AppKernel.php
public function registerBundles()
{
    return array(
        // club business
        new Iad\Bundle\ClubBusinessBundle\IadClubBusinessBundle(),

        // RcpBundle
        new Iad\Bundle\TrainingBundle\IadTrainingBundle(),
    );
}

Doctrine

Add bundles to mapping:

doctrine:
    orm:
        auto_mapping: false
        mappings:
            IadClubBusinessBundle: ~
            IadTrainingBundle: ~

Tests

Install dependencies:

$ composer install

Run test:

$ phpunit [--coverage-html <path>]