PHPackages                             shomisha/crudly - 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. [CLI &amp; Console](/categories/cli)
4. /
5. shomisha/crudly

ActivePackage[CLI &amp; Console](/categories/cli)

shomisha/crudly
===============

Crudly is a CLI tool for generating all of your mechanisms for CRUD using a simple command line wizard.

1.0.0(4y ago)1951MITPHPPHP ^7.4|^8.0

Since May 7Pushed 4y ago1 watchersCompare

[ Source](https://github.com/shomisha/crudly)[ Packagist](https://packagist.org/packages/shomisha/crudly)[ RSS](/packages/shomisha-crudly/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (5)Versions (4)Used By (0)

Crudly
======

[](#crudly)

[![Latest Stable Version](https://camo.githubusercontent.com/3c36f000a2354e6524ded6eb0fa70150c84e3b6dc8cbdb8e557667b51c4f27e0/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f73686f6d697368612f637275646c79)](https://packagist.org/packages/shomisha/crudly)[![Software License](https://camo.githubusercontent.com/f251623e510f5909f16ae3f4e6e548dac11340b9fde1a99be26b015b39272c00/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c6174)](LICENSE.md)

Crudly is a command line tool for generating a fully featured CRUD mechanism supporting both API and web base CRUD using a single console-based wizard.

All you have to do is run `php artisan crudly:model`, go through the wizard, and voilà, you're set.

Here's how you can run it:

```
shomisha@shomisha crudly % php artisan crudly:model

 Enter the name of your model:
 > Post

Define model properties:

 Enter property name:
 > id

 Choose property type:
  [0 ] boolean
  [1 ] string
  [2 ] email
  [3 ] text
  [4 ] integer
  [5 ] big integer
  [6 ] tiny integer
  [7 ] float
  [8 ] date
  [9 ] datetime
  [10] timestamp
  [11] json
 > big integer

 Should this field be unsigned? (yes/no) [yes]:
 >

 Should this field be auto-increment? (yes/no) [yes]:
 >

 Should this field be unique? (yes/no) [no]:
 >

 Should this field be nullable? (yes/no) [no]:
 >

 Should this field be the primary key? (yes/no) [yes]:
 >

 Should this field be a foreign key? (yes/no) [no]:
 >

 Do you want to add a model property? (yes/no) [yes]:
 >

 Enter property name:
 > title

 Choose property type:
  [0 ] boolean
  [1 ] string
  [2 ] email
  [3 ] text
  [4 ] integer
  [5 ] big integer
  [6 ] tiny integer
  [7 ] float
  [8 ] date
  [9 ] datetime
  [10] timestamp
  [11] json
 > string

 Should this field be unique? (yes/no) [no]:
 >

 Should this field be nullable? (yes/no) [no]:
 >

 Should this field be a foreign key? (yes/no) [no]:
 >

 Do you want to add a model property? (yes/no) [yes]:
 >

 Enter property name:
 > body

 Choose property type:
  [0 ] boolean
  [1 ] string
  [2 ] email
  [3 ] text
  [4 ] integer
  [5 ] big integer
  [6 ] tiny integer
  [7 ] float
  [8 ] date
  [9 ] datetime
  [10] timestamp
  [11] json
 > text

 Should this field be unique? (yes/no) [no]:
 >

 Should this field be nullable? (yes/no) [no]:
 >

 Should this field be a foreign key? (yes/no) [no]:
 >

 Do you want to add a model property? (yes/no) [yes]:
 >

 Enter property name:
 > published_at

 Choose property type:
  [0 ] boolean
  [1 ] string
  [2 ] email
  [3 ] text
  [4 ] integer
  [5 ] big integer
  [6 ] tiny integer
  [7 ] float
  [8 ] date
  [9 ] datetime
  [10] timestamp
  [11] json
 > datetime

 Should this field be unique? (yes/no) [no]:
 >

 Should this field be nullable? (yes/no) [no]:
 >

 Do you want to add a model property? (yes/no) [yes]:
 > no

 Do you want soft deletion for this model? (yes/no) [no]:
 > yes

 No 'deleted_at' column found. Please choose column for soft deletion:
  [0] published_at
  [1] Create new column
 > 1

 Enter column name:
 > archived_at

 Do you want timestamps for this model? (yes/no) [no]:
 >

 Should this model have web pages for CRUD actions? (yes/no) [yes]:
 >

 Should web CRUD actions be authorized? (yes/no) [yes]:
 >

 Do you want web CRUD tests? (yes/no) [yes]:
 >

 Should this model have API endpoints for CRUD actions? (yes/no) [yes]:
 >

 Should API CRUD endpoints be authorized? (yes/no) [yes]:
 >

 Do you want API CRUD tests? (yes/no) [yes]:
 >

shomisha@shomisha crudly %
```

Head on to the [Post Examples folder](https://github.com/shomisha/crudly/tree/chore/examples/Examples/Post) to check out the CRUD structure this wizard would generate.

Make sure to check out [the Wiki pages](https://github.com/shomisha/crudly/wiki) where you can find out what Crudly does and does not do, and also learn how to use it to speed up your development process.

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity59

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

1819d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/a935c4ce86afce555ba392ddcb9e827cc845a61d7ad0294950e64637d7201c95?d=identicon)[shomisha](/maintainers/shomisha)

---

Top Contributors

[![shomisha](https://avatars.githubusercontent.com/u/23019509?v=4)](https://github.com/shomisha "shomisha (231 commits)")

---

Tags

clilaravelcrudgenerationcode-generation

### Embed Badge

![Health badge](/badges/shomisha-crudly/health.svg)

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

###  Alternatives

[phpsa/filament-dadjokes

With DadJokes every time you load your control panel you'll be greeted by an epic dad joke on the dashboard.

1714.1k](/packages/phpsa-filament-dadjokes)

PHPackages © 2026

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