flexix/sample-entities-bundle

Symfony Sample Entities

dev-master 2017-06-01 06:45 UTC

This package is not auto-updated.

Last update: 2024-03-26 23:31:15 UTC


README

by Mariusz Piela mariusz.piela@tmsolution.pl

Some entities for tests.

Installation

To install the bundle, add:

//composer require

"flexix/sample-entities-bundle": "dev-master"

to your project's composer.json file. Later, enable your bundle in the app's kernel:

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new Flexix\SampleEntitiesBundle\FlexixSampleEntitiesBundle()
    );
}