PHPackages                             rin-project/fast-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. [Utility &amp; Helpers](/categories/utility)
4. /
5. rin-project/fast-crud

ActiveSymfony-bundle[Utility &amp; Helpers](/categories/utility)

rin-project/fast-crud
=====================

Make CRUD Very Simple! (NOT FINISHED, COMING SOON!)

v0.1.0(5y ago)15[2 PRs](https://github.com/immane/fast-crud/pulls)1MITPHPPHP ^7.1.3

Since Aug 9Pushed 3y ago1 watchersCompare

[ Source](https://github.com/immane/fast-crud)[ Packagist](https://packagist.org/packages/rin-project/fast-crud)[ Docs](https://github.com/immane/fast-crud)[ RSS](/packages/rin-project-fast-crud/feed)WikiDiscussions master Synced today

READMEChangelogDependencies (7)Versions (4)Used By (1)

FastCurdBundle
==============

[](#fastcurdbundle)

Lets Make CRUD Very Simple! If you have any funny ideas, write issues.

Prerequisites
-------------

[](#prerequisites)

- PHP 7.1.3 or higher
- Symfony 5.0 or higher

Testing Environment
-------------------

[](#testing-environment)

- Mac OSX 10.15 Catalina
- PHP 7.2.7
- Symfony 5.1

Installation
------------

[](#installation)

Open a command console, enter your project directory and install *fast-crud* from composer:

```
$ composer require rin-project/fast-crud

```

Add bundle config to *App\\Kernel.php* for registring bundle if you're not using Flex:

```
return [
    // ...

    // add this line
    RinProject\FastCrudBundle\FastCrudBundle::class => ['all' => true],
];

```

Import default config in *config/packages/framework.yaml*:

```
# config/packages/framework.yaml
imports:
    - { resource: "@FastCrudBundle/Resources/config/config.yaml" }

```

Import default routes in *config/routes.yaml* (optional):

```
# config/routes.yaml
fast-crud-route:
    resource: "@FastCrudBundle/Resources/config/routes.yaml"

```

If you want to catch all exceptions automatics, enable exception interceptor in config file *config/packages/framework.yaml*:

```
# config/packages/framework.yaml
fast_crud:
    exception_interceptor:
        enabled: true
        effective_pattern: /^\/(api|manage)\/.*$/

```

Usage
-----

[](#usage)

Generate by command
-------------------

[](#generate-by-command)

```
C: create
R: retrieve
U: update
D: delete
L: list

```

Sample:

```
$ php bin/console make:fast-crud RUDL App:Content
$ php bin/console make:fast-crud RL App:Region

```

Or generate manually
--------------------

[](#or-generate-manually)

If you have the same PRiMARY NAME of Entity, Controller and Service, like *User, UserController, UserService*.

Create a Fast-CRUD service:

```
namespace App\Service;

use RinProject\FastCrudBundle\Service\CrudService;

final class UserService extends CrudService {}

```

Create a controller inherit CrudController:

```
namespace App\Api\Controller;

use RinProject\FastCrudBundle\Controller\CrudController;
use RinProject\FastCrudBundle\View\ApiView;
use RinProject\FastCrudBundle\View\Mixin\SingleCreateAndUpdateApiViewMixin;
use RinProject\FastCrudBundle\View\Mixin\SingleRetrieveApiViewMixin;

/**
 * @Route("/api/user", name="api-user-")
 */
class UserController extends CrudController
{
    use ApiView, SingleRetrieveApiViewMixin, SingleCreateAndUpdateApiViewMixin;

    public function commonFilter()
    {
        return ['id' => $this->getUser()];
    }
}

```

Or you have the different PRIMARY NAME, like *Staff, UserController and PersonService*.

Service:

```
namespace App\Service;

use App\Entity\Staff;
use RinProject\FastCrudBundle\Service\CrudService;

final class PersonService extends CrudService
{
    function __construct(ContainerInterface $container)
    {
        parent::__construct($container, Staff::class);
    }
}

```

Controller:

```
namespace App\Api\Controller;

use App\Service\PersonService;
use RinProject\FastCrudBundle\Controller\CrudController;
use RinProject\FastCrudBundle\View\ApiView;
use RinProject\FastCrudBundle\View\Mixin\SingleCreateAndUpdateApiViewMixin;
use RinProject\FastCrudBundle\View\Mixin\SingleRetrieveApiViewMixin;

/**
 * @Route("/api/user", name="api-user-")
 */
class UserController extends CrudController
{
    use ApiView, SingleRetrieveApiViewMixin, SingleCreateAndUpdateApiViewMixin;

    public function __construct()
    {
        $this->serviceClass = PersonService::class;
    }

    public function commonFilter()
    {
        return ['id' => $this->getUser()];
    }
}

```

TO BE CONTINUE ...
------------------

[](#to-be-continue-)

###  Health Score

20

—

LowBetter than 13% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity42

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

Unknown

Total

1

Last Release

2155d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/9be04ab47840c19a6b9ed0dccf3582ebe94b11cba038b31e61eebc8dca798811?d=identicon)[immane@163.com](/maintainers/immane@163.com)

---

Top Contributors

[![immane](https://avatars.githubusercontent.com/u/9325176?v=4)](https://github.com/immane "immane (13 commits)")

---

Tags

symfonyFast CRUD

### Embed Badge

![Health badge](/badges/rin-project-fast-crud/health.svg)

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

###  Alternatives

[kimai/kimai

Kimai - Time Tracking

4.8k9.0k1](/packages/kimai-kimai)[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)[oro/platform

Business Application Platform (BAP)

645143.5k115](/packages/oro-platform)[pumukit/pumukit

Media Portal

6014.6k48](/packages/pumukit-pumukit)[mapbender/mapbender

Mapbender library

10418.3k8](/packages/mapbender-mapbender)[open-dxp/opendxp

Content &amp; Product Management Framework (CMS/PIM)

9421.6k61](/packages/open-dxp-opendxp)

PHPackages © 2026

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