vanio/vanio-domain-bundle

Symfony2 Bundle providing some additional features suitable when programming your domain.

Installs: 7 579

Dependents: 1

Suggesters: 0

Security: 0

Stars: 1

Watchers: 5

Forks: 0

Open Issues: 0

Type:symfony-bundle

v0.4.0 2018-10-13 02:16 UTC

README

Build Status Coverage Status PHP7 License

Installation

Installation can be done as usually using composer. composer require vanio/vanio-domain-bundle

Next step is to register this bundle as well as bundles it depends on inside your AppKernel.

// app/AppKernel.php
// ...

class AppKernel extends Kernel
{
    // ...

    public function registerBundles(): array
    {
        $bundles = [
            // ...
            new Vanio\UserBundle\VanioDomainBundle,
        ];

        // ...
    }
}