dmytrof/models-management-bundle

Symfony ModelsManagementBundle to manage models and entities

Installs: 6 262

Dependents: 2

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Type:symfony-bundle

1.10.3 2022-08-31 08:26 UTC

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],
    ];