PHPackages                             symkit/crud-bundle - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Admin Panels](/categories/admin)
4. /
5. symkit/crud-bundle

ActiveSymfony-bundle[Admin Panels](/categories/admin)

symkit/crud-bundle
==================

Symfony bundle for generic CRUD, Live lists (filters, sort, pagination), Twig components (BackLink, DeleteForm, CrudList, CrudFilters) and Stimulus

v0.0.4(2mo ago)04107MITPHPPHP &gt;=8.2CI failing

Since Feb 21Pushed 2mo agoCompare

[ Source](https://github.com/SymKit/crud-bundle)[ Packagist](https://packagist.org/packages/symkit/crud-bundle)[ RSS](/packages/symkit-crud-bundle/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (4)Dependencies (18)Versions (8)Used By (7)

Symkit CRUD Bundle
==================

[](#symkit-crud-bundle)

Powerful, event-driven CRUD and Live List system for Symfony.

[![CI](https://github.com/symkit/crud-bundle/actions/workflows/ci.yml/badge.svg)](https://github.com/symkit/crud-bundle/actions)[![Latest Version](https://camo.githubusercontent.com/ff83962784678c19c8f9a681c8c1156a6c43908bb6f781ba8666c5525955973b/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f73796d6b69742f637275642d62756e646c652e737667)](https://packagist.org/packages/symkit/crud-bundle)[![PHPStan Level 9](https://camo.githubusercontent.com/1bc07920f0d36e55c17e1d38b1caa132cc605f51a82b388c962870b9a747b898/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5048505374616e2d6c6576656c253230392d627269676874677265656e2e737667)](https://phpstan.org/)

---

**Symkit CRUD** simplifies administration and data management by providing a flexible persistence layer and modern interactive list components.

🚀 Quick Start in 60 Seconds
---------------------------

[](#-quick-start-in-60-seconds)

### 1. Install

[](#1-install)

```
composer require symkit/crud-bundle
```

### 2. Create your Controller

[](#2-create-your-controller)

Extend `AbstractCrudController` and let the magic happen:

```
#[Route('/admin/products')]
final class ProductController extends AbstractCrudController
{
    protected function getEntityClass(): string => Product::class;
    protected function getFormClass(): string => ProductType::class;
    protected function getRoutePrefix(): string => 'admin_product';

    #[Route('/', name: 'admin_product_list')]
    public function index(Request $request): Response => $this->renderIndex($request);
}
```

### 3. Display your List

[](#3-display-your-list)

That's it! You now have a full-featured list with **pagination**, **sorting**, and **real-time search** powered by Symfony UX Live Components.

---

📖 Explore the Documentation
---------------------------

[](#-explore-the-documentation)

- [**Installation Guide**](docs/installation.md) — Get up and running.
- [**Configuration**](docs/configuration.md) — Customize features and defaults.
- [**CRUD System**](docs/crud-system.md) — Mastering controllers, events, and persistence.
- [**List System**](docs/list-system.md) — Live filters, custom fields, and search.
- [**Utility Components**](docs/utility-components.md) — Back links, delete forms, and more.

---

🛠 Related Packages
------------------

[](#-related-packages)

- [**symkit/form-bundle**](https://github.com/symkit/form-bundle) — Rich form types and Tailwind theme. (Required)
- [**symkit/metadata-bundle**](https://github.com/symkit/metadata-bundle) — SEO and breadcrumbs integration. (Required)

---

🤝 Contributing
--------------

[](#-contributing)

We welcome contributions!

1. Quality Check: `make quality`
2. Run Tests: `make test`
3. Fix CS: `make cs-fix`

*Symkit is a collection of modern Symfony bundles built for developer productivity.*

###  Health Score

39

—

LowBetter than 86% of packages

Maintenance83

Actively maintained with recent releases

Popularity12

Limited adoption so far

Community16

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 84.2% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

4

Last Release

85d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/077eba6702dc23a795ee2262dff92505e3c8ead08f7cb205be80d8aae0a6b8e5?d=identicon)[sdieunidou](/maintainers/sdieunidou)

---

Top Contributors

[![sdieunidou](https://avatars.githubusercontent.com/u/570763?v=4)](https://github.com/sdieunidou "sdieunidou (16 commits)")[![claude](https://avatars.githubusercontent.com/u/81847?v=4)](https://github.com/claude "claude (2 commits)")[![google-labs-jules[bot]](https://avatars.githubusercontent.com/in/842251?v=4)](https://github.com/google-labs-jules[bot] "google-labs-jules[bot] (1 commits)")

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan

Code StylePHP CS Fixer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/symkit-crud-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/symkit-crud-bundle/health.svg)](https://phpackages.com/packages/symkit-crud-bundle)
```

###  Alternatives

[sylius/sylius

E-Commerce platform for PHP, based on Symfony framework.

8.4k5.6M651](/packages/sylius-sylius)[easycorp/easyadmin-bundle

Admin generator for Symfony applications

4.3k16.7M310](/packages/easycorp-easyadmin-bundle)[prestashop/prestashop

PrestaShop is an Open Source e-commerce platform, committed to providing the best shopping cart experience for both merchants and customers.

9.0k15.4k](/packages/prestashop-prestashop)[sulu/sulu

Core framework that implements the functionality of the Sulu content management system

1.3k1.3M152](/packages/sulu-sulu)[contao/core-bundle

Contao Open Source CMS

1231.6M2.4k](/packages/contao-core-bundle)[easycorp/easyadmin-demo

EasyAdmin Demo Application

145.7k](/packages/easycorp-easyadmin-demo)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
