PHPackages                             wovosoft/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. wovosoft/crud

ActiveLibrary[Framework](/categories/framework)

wovosoft/crud
=============

A laravel package generator for WovoCMS

v1.0.2(6y ago)11681MITPHPPHP &gt;=7.2

Since Feb 27Pushed 6y ago1 watchersCompare

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

READMEChangelog (3)Dependencies (5)Versions (4)Used By (0)

Laravel Package Generator
=========================

[](#laravel-package-generator)

[![Latest Stable Version](https://camo.githubusercontent.com/c67496d6bb3fc468f4e8e353498dcccf4deb2909e4fe000b0ecbe78c52682d72/68747470733a2f2f706f7365722e707567782e6f72672f776f766f736f66742f637275642f762f737461626c65)](https://packagist.org/packages/wovosoft/crud) [![Total Downloads](https://camo.githubusercontent.com/fb4378fe1fece67fc77851a520e613a31e0f1c0100fed77cfa16810f212c9ef6/68747470733a2f2f706f7365722e707567782e6f72672f776f766f736f66742f637275642f646f776e6c6f616473)](https://packagist.org/packages/wovosoft/crud) [![Latest Unstable Version](https://camo.githubusercontent.com/de4f7821d6a10ea9180f31cd9192e9d1ddf7edccb19d02a42f8566f1015d518a/68747470733a2f2f706f7365722e707567782e6f72672f776f766f736f66742f637275642f762f756e737461626c65)](https://packagist.org/packages/wovosoft/crud) [![License](https://camo.githubusercontent.com/50fc09de66a32d6eb63ed440e7adefbbe3450160dce3631f489aa4d022173387/68747470733a2f2f706f7365722e707567782e6f72672f776f766f736f66742f637275642f6c6963656e7365)](https://packagist.org/packages/wovosoft/crud)

Simple package to quickly generate basic structure for laravel packages.
========================================================================

[](#simple-package-to-quickly-generate-basic-structure-for-laravel-packages)

Install
-------

[](#install)

Install via composer

```
composer require --dev wovosoft/crud
```

Publish package config if you want customize default values

```
php artisan vendor:publish --provider="Wovosoft\Crud\ServiceProvider" --tag="config"
```

Available commands for Packages
-------------------------------

[](#available-commands--for-packages)

### Make A New Package

[](#make-a-new-package)

`php artisan crud:make_package {vendor} {package}`
or, with inraction
`php artisan crud:make_package -i`

Example: `php artisan crud:make_package Wovosoft SomeAwesomePackage`

This command will:

- Create `packages/wovosoft/some-awesome-package` folder
- Register package in app composer.json
- Copy package skeleton from skeleton folder to created folder (you can provide
    your custom skeleton path in config)
- Run `git init packages/wovosoft/some-awesome-package`
- Run `composer update wovosoft/some-awesome-package`
- Run `composer dump-autoload`

With interactive `-i` flag you will be prompted for every needed value from you.

### Remove A Package

[](#remove-a-package)

`php artisan crud:remove_package {vendor} {package}  `

Example: `php artisan crud:remove_package Wovosoft SomeAwesomePackage`

This command will:

- Run `composer remove wovosoft/some-awesome-package`
- Remove `packages/wovosoft/some-awesome-package` folder
- Unregister package in app composer.json
- Run `composer dump-autoload`

**Interactive mode also possible.**

Available Commands For Controller Generation
--------------------------------------------

[](#available-commands-for-controller-generation)

### Make a Controller

[](#make-a-controller)

`php artisan crud:make_controller {vendor} {package} {controller} {model}` \\

#### With Interaction Mode

[](#with-interaction-mode)

`php artisan crud:make_controller -i`

### Remove A Controller

[](#remove-a-controller)

`php artisan crud:remove_controller {vendor} {package} {controller}`

#### With Interaction Mode

[](#with-interaction-mode-1)

`php artisan crud:remove_controller -i`

Available Commands for Model Generation
---------------------------------------

[](#available-commands-for-model-generation)

### Make a Model

[](#make-a-model)

`php artisan crud:make_model {vendor} {package} {model}`

#### With Interaction Mode

[](#with-interaction-mode-2)

`php artisan crud:make_model -i`

### Remove a Model

[](#remove-a-model)

`php artisan crud:remove_model {vendor} {package} {model}`

#### With Interaction Model

[](#with-interaction-model)

`php artisan crud:remove_model -i`

CRUD Console Application
------------------------

[](#crud-console-application)

> There is a Console Application available. To run all above Artisan Commands from a single terminal with less commands, please run `php artisan crud -i` or `php artisan crud`. Then you can see the all available commands in a multiple choice form. Just select an option and that command will start executing immediately in interaction mode. You can then follow the rest of the ongoing processes.

Custom skeleton
---------------

[](#custom-skeleton)

> This package will copy all folders and files from specified skeleton path to package folder. You can use templates in your skeleton. All files with `tpl` extension will be provided with some variables available to use in them. `tpl` extension will be stripped.

### Available variables to use in templates:

[](#available-variables-to-use-in-templates)

- vendor (e.g. Wovosoft)
- package (e.g. SomeAwesomePackage)
- vendorFolderName (e.g. wovosoft)
- packageFolderName (e.g. some-awesome-package)
- packageHumanName (e.g. Some awesome package)
- composerName (e.g. wovosoft/some-awesome-package)
- composerDesc (e.g. A some awesome package)
- composerKeywords (e.g. some,awesome,package)
- licence (e.g. MIT)
- phpVersion (e.g. &gt;=7.0)
- aliasName (e.g. some-awesome-package)
- configFileName (e.g. some-awesome-package)
- year (e.g. 2017)
- name (e.g. Narayan Adhikary)
- email (e.g. )
- githubPackageUrl (e.g. )
- controller (Name of the Controller for Controller Generation)
- model (Name of the Model for Model Generation)

Things you need to do manually:
-------------------------------

[](#things-you-need-to-do-manually)

- Service provider and alias registration (if you use laravel &lt;5.5)
- In README.md:
    - StyleCI repository identifier
    - Package description
    - Usage section

Security
--------

[](#security)

If you discover any security related issues, please email  Or, create an issue in this github repository.

Credits
-------

[](#credits)

- [Narayan Adhikary](https://github.com/narai420)
- [Wovo Soft](https://gitlab.com/wovosoft)

Special Thanks
--------------

[](#special-thanks)

- Special Thanks to  . We have just made an extended version of this package. A Console Application is integrated to perform all operations. Few more commands like Controller, Models with adding and removing features for certain packages are added.

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity16

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity53

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 84.6% 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 ~12 days

Total

3

Last Release

2246d ago

### Community

Maintainers

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

---

Top Contributors

[![wovosoft](https://avatars.githubusercontent.com/u/56657054?v=4)](https://github.com/wovosoft "wovosoft (11 commits)")[![narai420](https://avatars.githubusercontent.com/u/29335156?v=4)](https://github.com/narai420 "narai420 (2 commits)")

---

Tags

controllercustom-skeletongeneratorlaravel-packagelaravel-package-generatormodelspackageroutesseederswovosoftlaravelpackagegeneratorcontrollersmodelsseeders

### Embed Badge

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

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

###  Alternatives

[laravel/ui

Laravel UI utilities and presets.

2.7k134.9M601](/packages/laravel-ui)[laravel/passport

Laravel Passport provides OAuth2 server support to Laravel.

3.4k85.0M532](/packages/laravel-passport)[tightenco/jigsaw

Simple static sites with Laravel's Blade.

2.2k438.5k29](/packages/tightenco-jigsaw)[laravel/folio

Page based routing for Laravel.

608453.9k27](/packages/laravel-folio)[laravel/breeze

Minimal Laravel authentication scaffolding with Blade and Tailwind.

3.0k31.3M148](/packages/laravel-breeze)[laravel/cashier

Laravel Cashier provides an expressive, fluent interface to Stripe's subscription billing services.

2.5k25.9M107](/packages/laravel-cashier)

PHPackages © 2026

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