dmytrof / models-management-bundle
Symfony ModelsManagementBundle to manage models and entities
Package info
github.com/dmytrof/ModelsManagementBundle
Type:symfony-bundle
pkg:composer/dmytrof/models-management-bundle
1.10.3
2022-08-31 08:26 UTC
Requires
- php: ^7.2 || ^8.0
- doctrine/inflector: ^2.0
- doctrine/orm: ^2.6
- gedmo/doctrine-extensions: ^2.4 || ^3.0
- symfony/event-dispatcher: ^4.3 || ^5.0
- symfony/form: ^4.3 || ^5.0
- symfony/framework-bundle: ^4.3 || ^5.0
- symfony/validator: ^4.3 || ^5.0
Requires (Dev)
- phpunit/phpunit: ^8.3 || ^9.1
README
This bundle helps you to manage your models and entities (from DB, 3rd-party API, etc.) for your Symfony 4/5 application
Installation
Step 1: Install the bundle
$ composer require dmytrof/models-management-bundle
Step 2: Enable the bundle
<?php
// config/bundles.php
return [
// ...
Dmytrof\ModelsManagementBundle\DmytrofModelsManagementBundle::class => ['all' => true],
];