kematjaya / crud-maker-bundle
crud generator base on symfony maker-bundle
Installs: 1 838
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 0
Forks: 0
Open Issues: 2
pkg:composer/kematjaya/crud-maker-bundle
Requires
- doctrine/doctrine-bundle: ^3.2
- doctrine/orm: ^3.5
- kematjaya/base-controller-bundle: ^8.0
- kematjaya/url-bundle: ^7.0|^8.0
- symfony/config: ^7.0|^8.0
- symfony/console: ^7.0|^8.0
- symfony/dependency-injection: ^7.0|^8.0
- symfony/form: ^7.0|^8.0
- symfony/http-foundation: ^7.0|^8.0
- symfony/http-kernel: ^7.0|^8.0
- symfony/maker-bundle: ^1.60
- symfony/routing: ^7.0|^8.0
- symfony/security-csrf: ^7.0|^8.0
- symfony/translation: ^7.0|^8.0
- symfony/twig-bundle: ^7.0|^8.0
- symfony/validator: ^7.0|^8.0
- symfony/yaml: ^7.0|^8.0
Requires (Dev)
- phpunit/phpunit: ^12.0
- symfony/browser-kit: ^7.0|^8.0
- symfony/var-dumper: ^7.0|^8.0
- dev-master
- 8.0.3
- 8.0.2
- 8.0.1
- 8.0
- 7.0.3
- 7.0.2
- 7.0.1
- 7.0
- 2.2.1
- 2.2
- 2.1
- 2.0.2
- 2.0.1
- 2.0
- 1.5.1
- 1.5
- 1.4.1
- 1.4.0
- 1.3.3
- 1.3.2
- 1.3.1
- 1.3.0
- 1.2.12
- 1.2.11
- 1.2.10
- 1.2.9
- 1.2.7
- 1.2.6
- 1.2.5
- 1.2.4
- 1.2.3
- 1.2.2
- 1.2.1
- 1.2.0
- 1.1.1
- 1.1
- 1.0
- dev-dependabot/composer/symfony/http-kernel-5.4.20
- dev-dependabot/composer/twig/twig-3.4.3
This package is auto-updated.
Last update: 2026-01-20 16:40:57 UTC
README
CRUD generator base on Symfony Maker Bundle
- installation
composer require kematjaya/crud-maker-bundle
- Generate Filter Form
php bin/console make:kmj-filter
- Generate CRUD include form, filter and pagination
php bin/console make:kmj-crud
if use modal add to base template
<div class="modal fade" id="myModal">
<div class="modal-content" id="modal-dialog">
<div style="text-align: center"><img src="{{ asset('bundles/basecontroller/images/loading.gif') }}" style="width: 20px"/></div>
</div>
</div>
and add jquery.js
- if you want to change generator template, you can set template path in config
# config/packages/crud_generator.yaml
# assume your template in root-project/generator
crud_maker:
templates:
path: '%kernel.project_dir%/generator'
thank to:
- Filter type provide by https://github.com/lexik/LexikFormFilterBundle
- pagination provide by https://github.com/KnpLabs/KnpPaginatorBundle
- Base CRUD by: https://github.com/symfony/maker-bundle