flexix / sample-entities-bundle
Symfony Sample Entities
Installs: 8
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.5.9
- symfony/framework-bundle: 3.*
Requires (Dev)
- phpunit/phpunit: 6.*
This package is not auto-updated.
Last update: 2024-11-20 02:27:29 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()
);
}