dmytrof / models-management-bundle
Symfony ModelsManagementBundle to manage models and entities
Installs: 6 617
Dependents: 2
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:symfony-bundle
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],
];