vanio / vanio-domain-bundle
Symfony2 Bundle providing some additional features suitable when programming your domain.
Package info
github.com/vaniocz/vanio-domain-bundle
Type:symfony-bundle
pkg:composer/vanio/vanio-domain-bundle
v0.4.0
2018-10-13 02:16 UTC
Requires
- php: ^7.0
- beberlei/assert: ^2.9.2
- happyr/doctrine-specification: ^0.8
- ramsey/uuid-doctrine: ^1.2
- sensio/framework-extra-bundle: ^3.0 || ^4.0 || ^5.0
- symfony/form: ^3.0
- symfony/validator: ^3.0
- vanio/doctrine-domain-events: ^0.1
- vanio/doctrine-generic-types: ^0.1
- vanio/stdlib: ~0.1
- vertigolabs/doctrine-full-text-postgres: dev-master#75e767c660fcbc85fa29db40946242f5172a5721
Requires (Dev)
- fp/jsformvalidator-bundle: dev-fork
- matthiasnoback/symfony-dependency-injection-test: ^1.0
- phpunit/phpunit: ^5.5
- vanio/coding-standards: ^0.1@dev
- vich/uploader-bundle: ^1.3.1
This package is auto-updated.
Last update: 2026-05-29 00:39:46 UTC
README
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, ]; // ... } }