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(1mo ago)18811MITPHPPHP &gt;=8.1

Since Sep 26Pushed 1mo ago1 watchersCompare

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

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 92% of packages

Maintenance90

Actively maintained with recent releases

Popularity15

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity52

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

47d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/54b53768a2190aa8af502fe9a95cad4c91f14ae09e71f522fd82ab7d85c73512?d=identicon)[dakataa](/maintainers/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

[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)[sylius/sylius

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

8.4k5.6M651](/packages/sylius-sylius)[sulu/sulu

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

1.3k1.3M152](/packages/sulu-sulu)[ec-cube/ec-cube

EC-CUBE EC open platform.

78527.0k1](/packages/ec-cube-ec-cube)[contao/core-bundle

Contao Open Source CMS

1231.6M2.4k](/packages/contao-core-bundle)[kimai/kimai

Kimai - Time Tracking

4.6k7.4k1](/packages/kimai-kimai)

PHPackages © 2026

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