PHPackages                             se468/laravel-package-generators-extended - 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. se468/laravel-package-generators-extended

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

se468/laravel-package-generators-extended
=========================================

Create migrations, models, controllers for custom packages using artisan commands.

v0.2.4(8y ago)69221MITPHPPHP ~5.6|~7.0

Since Mar 26Pushed 8y ago1 watchersCompare

[ Source](https://github.com/se468/laravel-package-generators-extended)[ Packagist](https://packagist.org/packages/se468/laravel-package-generators-extended)[ Docs](https://github.com/se468/laravel-package-generators-extended)[ RSS](/packages/se468-laravel-package-generators-extended/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependencies (1)Versions (9)Used By (0)

Laravel Package Generators Extended
===================================

[](#laravel-package-generators-extended)

[![Latest Stable Version](https://camo.githubusercontent.com/72ea6190113b1f3f12bfbd65d3fe7a07e4ed50d88c648c27615a62eac09aa29a/68747470733a2f2f706f7365722e707567782e6f72672f73653436382f6c61726176656c2d7061636b6167652d67656e657261746f72732d657874656e6465642f762f737461626c65)](https://packagist.org/packages/se468/laravel-package-generators-extended)[![Total Downloads](https://camo.githubusercontent.com/0ea4ae57523303f96542b0dd5e80753e27cdf5058708849339ec729073862224/68747470733a2f2f706f7365722e707567782e6f72672f73653436382f6c61726176656c2d7061636b6167652d67656e657261746f72732d657874656e6465642f646f776e6c6f616473)](https://packagist.org/packages/se468/laravel-package-generators-extended)[![License](https://camo.githubusercontent.com/7c8b7f7b13e28698d520fe2d0c951d59392ade7b678d4fd47bb93f701ba65533/68747470733a2f2f706f7365722e707567782e6f72672f73653436382f6c61726176656c2d7061636b6167652d67656e657261746f72732d657874656e6465642f6c6963656e7365)](https://packagist.org/packages/se468/laravel-package-generators-extended)

Adds Artisan command generators for the package for Commands, Migrations, Controllers, Models for rapid package development.

This package comes with useful generators:

```
php artisan package:create

php artisan package:command

php artisan package:controller

php artisan package:migration

php artisan package:model
```

Install
-------

[](#install)

Via Composer

```
$ composer require se468/laravel-package-generators-extended
```

### Optional Configuration

[](#optional-configuration)

If you do not want to type vendor/package/namespace over and over for your generators, we offer a config file method.

Publish the config file.

```
$ php artisan vendor:publish
```

It will generate `package-generators.php` in the `app/config` directory. You can modify `vendor`, `package`, `namespace` to set the default package. You may now call the commands without specifying vendor/package/namespaces, and just specify the name of the file you want to create.

Usage
-----

[](#usage)

### Package

[](#package)

```
$ package:create {vendor} {package} {namespace}
```

Will create a service provider and `composer.json` in your package src directory.

It will also add the psr4 namespaces in your laravel's `composer.json` file and register the service provider in `config/app.php` automatically.

It's that simple!

### Command

[](#command)

```
$ package:command {name_of_file} {vendor?} {package?} {namespace?} --path
```

Example:

```
$ php artisan package:command TestCommand se468 test-package TestNamespace
```

or using config file

```
$ php artisan package:command TestCommand
```

### Controller

[](#controller)

```
$ package:controller {name_of_file} {vendor?} {package?} {namespace?}  --path
```

Example:

```
$ php artisan package:controller TestController se468 test-package TestNamespace
```

or using config file

```
$ php artisan package:controller TestController
```

### Migration

[](#migration)

```
$ package:migration {name_of_file} {vendor?} {package?} {namespace?} --path

```

Example:

```
$ php artisan package:migration create_test_migration se468 test-package TestNamespace
```

or using config file

```
$ php artisan package:migration create_test_migration
```

### Model

[](#model)

```
$ package:model {vendor} {package} {namespace} {name} --path
```

Example:

```
$ php artisan package:model TestModel se468 test-package TestNamespace
```

or using config file

```
$ php artisan package:model TestModel
```

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity20

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity53

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

Total

8

Last Release

2954d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/47734150c4de2c84b26e02fb4f6dcaecf3bcc2c4721b9dfd339ac09d31fab05b?d=identicon)[se468](/maintainers/se468)

---

Top Contributors

[![se468](https://avatars.githubusercontent.com/u/1775954?v=4)](https://github.com/se468 "se468 (24 commits)")

---

Tags

laravellaravel-5-packagese468LaravelPackageGeneratorsExtended

### Embed Badge

![Health badge](/badges/se468-laravel-package-generators-extended/health.svg)

```
[![Health](https://phpackages.com/badges/se468-laravel-package-generators-extended/health.svg)](https://phpackages.com/packages/se468-laravel-package-generators-extended)
```

###  Alternatives

[barryvdh/laravel-ide-helper

Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.

14.9k123.0M687](/packages/barryvdh-laravel-ide-helper)[orchestra/canvas

Code Generators for Laravel Applications and Packages

21017.2M158](/packages/orchestra-canvas)[illuminate/pipeline

The Illuminate Pipeline package.

9446.6M213](/packages/illuminate-pipeline)[illuminate/pagination

The Illuminate Pagination package.

10532.5M862](/packages/illuminate-pagination)[spatie/laravel-pjax

A pjax middleware for Laravel 5

513371.8k11](/packages/spatie-laravel-pjax)[spatie/laravel-mix-preload

Add preload and prefetch links based your Mix manifest

169176.0k2](/packages/spatie-laravel-mix-preload)

PHPackages © 2026

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