PHPackages                             dakataa/crud - 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. [Framework](/categories/framework)
4. /
5. dakataa/crud

ActiveLibrary[Framework](/categories/framework)

dakataa/crud
============

Symfony CRUD

v1.2.0(3mo ago)19111MITPHPPHP &gt;=8.1

Since Sep 26Pushed 2w ago1 watchersCompare

[ Source](https://github.com/dakataa/crud)[ Packagist](https://packagist.org/packages/dakataa/crud)[ RSS](/packages/dakataa-crud/feed)WikiDiscussions main Synced today

READMEChangelog (3)Dependencies (19)Versions (7)Used By (1)

CRUD Dashboard
==============

[](#crud-dashboard)

Create fast and easy CRUD Dashboard. This package itself works as a REST API and can be used with ReactJS Package [@dakataa/crud-react](https://github.com/dakataa/crud-react), or you can enable **Twig** version by adding additional package [@dakataa/crud-twig](https://github.com/dakataa/crud-twig).

How to Install
--------------

[](#how-to-install)

1. Setup Symfony Project.

    ```
    symfony new --webapp crud
    ```
2. Create Entity And Form Type

    ```
    php bin/console make:entity Product
    php bin/console make:form ProductType Product
    ...
    php bin/console make:migration
    php bin/console doctrine:migrations:migrate
    ```
3. Add package to composer

    ```
    composer require dakataa/crud
    ```

    add routes without recipe in config/routes/annotation.yaml:

    ```
    dakataa_crud:
    	resource: '@DakataaCrudBundle/src/Controller'
    	type: attribute
    	prefix: /_crud
    ```
4. Allow controllers to inject services. Add this code to your services.yaml controllers are imported separately to make sure services can be injected

    ```
    App\Controller\:
    	resource: '../src/Controller'
    	tags: [ 'controller.service_arguments' ]
    ```
5. Create first controller. Standard way:

    ```
    namespace App\Controller;

    use App\Entity\Product;
    use App\Form\ProductType;
    use Dakataa\Crud\Attribute\Entity;
    use Dakataa\Crud\Attribute\EntityType;
    use Dakataa\Crud\Controller\AbstractCrudController;
    use Doctrine\ORM\QueryBuilder;
    use Symfony\Component\HttpFoundation\Request;use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;

    #[Route('/product')]
    #[Entity(Product::class)]
    #[EntityType(ProductType::class)]
    class ProductController extends AbstractCrudController
    {
    }
    ```

    if you want to customize initial query. This method is called before query execution.

    ```
    public function buildCustomQuery(Request $request, QueryBuilder $query): AbstractCrudController
    {
        $query
            ->andWhere('a.enabled = true');

        return $this;
    }
    ```

    with Make Command

    ```
    php symfony crud:make:entity Product ProductType ProductController
    ```

How to extend templates
-----------------------

[](#how-to-extend-templates)

Map URL parameter to entity column
----------------------------------

[](#map-url-parameter-to-entity-column)

How to ...
----------

[](#how-to-)

###  Health Score

44

—

FairBetter than 90% of packages

Maintenance90

Actively maintained with recent releases

Popularity13

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity53

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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 ~138 days

Total

5

Last Release

92d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/98918971?v=4)[Yordan Lazarov](/maintainers/dakataa)[@dakataa](https://github.com/dakataa)

---

Top Contributors

[![dakataa](https://avatars.githubusercontent.com/u/98918971?v=4)](https://github.com/dakataa "dakataa (8 commits)")

### Embed Badge

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

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

###  Alternatives

[rcsofttech/audit-trail-bundle

Enterprise-grade, high-performance Symfony audit trail bundle. Automatically track Doctrine entity changes with split-phase architecture, multiple transports (HTTP, Queue, Doctrine), and sensitive data masking.

1189.8k](/packages/rcsofttech-audit-trail-bundle)[easycorp/easyadmin-bundle

Admin generator for Symfony applications

4.3k17.9M388](/packages/easycorp-easyadmin-bundle)[kimai/kimai

Kimai - Time Tracking

4.8k9.0k1](/packages/kimai-kimai)[prestashop/prestashop

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

9.1k17.8k](/packages/prestashop-prestashop)[2lenet/crudit-bundle

The easy like Crud'it Bundle.

1616.4k14](/packages/2lenet-crudit-bundle)[sylius/sylius

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

8.5k5.9M736](/packages/sylius-sylius)

PHPackages © 2026

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