ywoume/imkcrudbundle

There is no license information available for the latest version (1.2.1) of this package.

Crud Process simplify bundle

1.2.1 2020-02-11 21:11 UTC

This package is auto-updated.

Last update: 2024-03-29 04:19:16 UTC


README

composer require ywoume/imkcrudbundle

Copy and paste this in your terminal.

2 - Charge in symfony

in Bundles.php add this line

// file: config/bundle.php
ImkCrudBundle\ImkCrudBundle::class => ['all' => true],

#3 - Configuration

add imk_crud.yaml in packages/ folders and paste this inside imk_crud: ~

default configuration

This is an example default configuration form an entity

imk_crud:
  entity:
    - Users:
        crud: true
        create: true
        read: true
        list: true
        delete: true
        update: true