PHPackages                             execut/yii2-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. [Admin Panels](/categories/admin)
4. /
5. execut/yii2-crud

ActiveYii2-extension[Admin Panels](/categories/admin)

execut/yii2-crud
================

Yii2 object for fasted configuration CRUD navigation and actions for models without copy-paste or CRUD generators

0.7.4(5y ago)064018Apache-2.0PHPPHP ^7.4

Since May 14Pushed 5y ago2 watchersCompare

[ Source](https://github.com/execut/yii2-crud)[ Packagist](https://packagist.org/packages/execut/yii2-crud)[ Docs](https://github.com/execut/yii2-crud)[ RSS](/packages/execut-yii2-crud/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependencies (9)Versions (30)Used By (8)

Yii2 CRUD
=========

[](#yii2-crud)

It's package for simple creating CRUD from configuring navigation to required controller actions in 3 steps without copy-paste or CRUD generators.

For license information check the [LICENSE](LICENSE.md)-file.

English documentation is at [docs/guide/README.md](https://github.com/execut/yii2-crud/blob/master/docs/guide/README.md).

Русская документация здесь [docs/guide-ru/README.md](https://github.com/execut/yii2-crud/blob/master/docs/guide-ru/README.md).

[![Latest Stable Version](https://camo.githubusercontent.com/2d295011536e86b9fa8e94ac32b9b1f625a70f9b64485a7997dc8f29e1b5bd6c/68747470733a2f2f706f7365722e707567782e6f72672f6578656375742f796969322d637275642f762f737461626c652e706e67)](https://packagist.org/packages/execut/yii2-crud)[![Total Downloads](https://camo.githubusercontent.com/565558486cfc2ef8e1ed8ca04f7bf02fac52667b25d6fc871f54f8a35c404509/68747470733a2f2f706f7365722e707567782e6f72672f6578656375742f796969322d637275642f646f776e6c6f6164732e706e67)](https://packagist.org/packages/execut/yii2-crud)[![Build Status](https://camo.githubusercontent.com/aff054811707f83211a8d0ebd17f80ec2a42b9b11b6f4a485eeda3cd0fe577ec/68747470733a2f2f7472617669732d63692e636f6d2f6578656375742f796969322d637275642e7376673f6272616e63683d6d6173746572)](https://travis-ci.com/execut/yii2-crud)

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

[](#installation)

The preferred way to install this extension is through [composer](http://getcomposer.org/download/).

### Install

[](#install)

Either run

```
$ php composer.phar require execut/yii2-crud "dev-master"

```

or add

```
"execut/yii2-crud": "dev-master"

```

to the `require` section of your `composer.json` file.

Add bootstrap to your application config:

```
return [
    'bootstrap' => [
        'yii2-crud' => [
            'class' => \execut\crud\Bootstrap::class,
        ]
    ]
];
```

Usage
-----

[](#usage)

Let's say you need to make a CRUD for the model [execut\\books\\models\\Book](https://github.com/execut/yii2-books/blob/master/src/models/Book.php)To do this, just add the following lines to controller:

```
namespace execut\books\controllers;

use execut\books\models\Book;
use execut\crud\params\Crud;
use yii\web\Controller;
class BooksController extends Controller
{
    public function actions()
    {
        $crud = new Crud([
            'modelClass' => Book::class,
            'modelName' => Book::MODEL_NAME,
        ]);
        return $crud->actions();
    }
}
```

As a result, a full-fledged CRUD will appear for this model: [![Books CRUD list](https://raw.githubusercontent.com/execut/yii2-crud/master/docs/guide/i/books-list.jpg)](https://raw.githubusercontent.com/execut/yii2-crud/master/docs/guide/i/books-list.jpg)[![Books CRUD form](https://raw.githubusercontent.com/execut/yii2-crud/master/docs/guide/i/books-form.jpg)](https://raw.githubusercontent.com/execut/yii2-crud/master/docs/guide/i/books-form.jpg)

For more details please refer to the documentation [docs/guide/README.md](https://github.com/execut/yii2-crud/blob/master/docs/guide/README.md).

Для более подробной информации обращайтесь к документации [docs/guide-ru/README.md](https://github.com/execut/yii2-crud/blob/master/docs/guide-ru/README.md).

###  Health Score

31

—

LowBetter than 68% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity14

Limited adoption so far

Community17

Small or concentrated contributor base

Maturity64

Established project with proven stability

 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 ~42 days

Recently: every ~17 days

Total

29

Last Release

2085d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/0ffb982747c04d8d93e2db3f8d90e44864c7c2a21a4c3d00ffbe66325f3f91c4?d=identicon)[execut](/maintainers/execut)

---

Top Contributors

[![execut](https://avatars.githubusercontent.com/u/2357407?v=4)](https://github.com/execut "execut (55 commits)")

---

Tags

yii2crud

###  Code Quality

TestsCodeception

### Embed Badge

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

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

###  Alternatives

[schmunk42/yii2-giiant

Gii CRUD generator for Yii 2 Framework

269471.5k17](/packages/schmunk42-yii2-giiant)

PHPackages © 2026

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