prezent / crud-bundle
Easy CRUD for Symfony
Installs: 10 811
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 8
Forks: 2
Open Issues: 0
Type:symfony-bundle
pkg:composer/prezent/crud-bundle
Requires
- php: ^7.4|^8.0
 - babdev/pagerfanta-bundle: ^3.0
 - pagerfanta/core: ^3.1
 - pagerfanta/doctrine-orm-adapter: ^3.1
 - pagerfanta/twig: ^3.1
 - prezent/grid-bundle: ^0.8.0
 - symfony/form: ^5.0|^6.0
 - symfony/framework-bundle: ^5.0|^6.0
 - symfony/validator: ^5.0|^6.0
 
Requires (Dev)
- doctrine/doctrine-bundle: ^2.0
 - doctrine/doctrine-fixtures-bundle: ^3.0
 - doctrine/orm: ^2.5
 - symfony/browser-kit: ^5.0|^6.0
 - symfony/css-selector: ^5.0|^6.0
 - symfony/finder: ^5.0|^6.0
 - symfony/monolog-bundle: ^3.5
 - symfony/phpunit-bridge: ^5.0|^6.0
 - symfony/templating: ^5.0|^6.0
 - symfony/twig-bundle: ^5.0|^6.0
 - symfony/yaml: ^5.0|^6.0
 
- 1.3.1
 - 1.3.0
 - 1.2.1
 - 1.2.0
 - 1.1.0
 - dev-master / 1.0.x-dev
 - 1.0.1
 - 1.0.0
 - 0.14.0
 - 0.13.2
 - 0.13.1
 - 0.13.0
 - 0.12.4
 - 0.12.3
 - 0.12.2
 - 0.12.1
 - 0.12.0
 - 0.11.0
 - 0.10.2
 - 0.10.1
 - 0.10.0
 - 0.9.0
 - 0.8.5
 - 0.8.4
 - 0.8.3
 - 0.8.2
 - 0.8.1
 - 0.8.0
 - 0.7.0
 - 0.6.7
 - 0.6.6
 - 0.6.5
 - 0.6.4
 - 0.6.3
 - 0.6.2
 - 0.6.1
 - 0.6.0
 - 0.5.2
 - 0.5.1
 - 0.5.0
 - 0.4.2
 - 0.4.1
 - 0.4.0
 - 0.3.8
 - 0.3.7
 - 0.3.6
 - 0.3.5
 - 0.3.4
 - 0.3.3
 - 0.3.2
 - 0.3.1
 - 0.3.0
 - 0.2.3
 - 0.2.2
 - 0.2.1
 - 0.2.0
 - 0.1.1
 - 0.1.0
 
This package is auto-updated.
Last update: 2025-10-28 13:12:04 UTC
README
Easy CRUD for Symfony
namespace AppBundle\Controller; use AppBundle\Entity\Product; use AppBundle\Form\Type\ProductType; use AppBundle\Grid\Type\ProductGridType; use Prezent\CrudBundle\Controller\CrudController; use Prezent\CrudBundle\Model\Configuration; class ProductController extends CrudController { protected function configure(Request $request, Configuration $config) { $config ->setEntityClass(Product::class) ->setFormType(ProductType::class) ->setGridType(ProductGridType::class) ; } }
The documentation can be found in Resources/doc