PHPackages                             timwassenburg/laravel-artisan-extender - 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. timwassenburg/laravel-artisan-extender

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

timwassenburg/laravel-artisan-extender
======================================

A collection of generators for Laravel

v1.0.0(3y ago)111.4k↓16.7%MITPHP

Since Apr 21Pushed 3y ago1 watchersCompare

[ Source](https://github.com/timwassenburg/laravel-artisan-extender)[ Packagist](https://packagist.org/packages/timwassenburg/laravel-artisan-extender)[ Docs](https://github.com/timwassenburg/laravel-artisan-extender)[ RSS](/packages/timwassenburg-laravel-artisan-extender/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (1)Dependencies (5)Versions (2)Used By (0)

[![Logo](img/banner.png)](img/banner.png)

[![Latest Version on Packagist](https://camo.githubusercontent.com/f18e8b50ee98ac19e74333d06e98f95cffcfc3067b9eec62472602ce27ebf26c/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f74696d77617373656e627572672f6c61726176656c2d6172746973616e2d657874656e6465722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/timwassenburg/laravel-artisan-extender)[![Total Downloads](https://camo.githubusercontent.com/3fc04ba67fb068437bb7d38c821e34c3457eb4b4faa5005fdd00d8f4c3ef2c50/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f74696d77617373656e627572672f6c61726176656c2d6172746973616e2d657874656e6465722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/timwassenburg/laravel-artisan-extender)[![License](https://camo.githubusercontent.com/cfacc74d2df641f8fc1f08c10bf9b0702ee6a872599c47155ca87f020b9bd92e/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f74696d77617373656e627572672f6c61726176656c2d6172746973616e2d657874656e646572)](https://packagist.org/packages/timwassenburg/laravel-artisan-extender)

---

Table of Contents
-----------------

[](#table-of-contents)

1. [Installation](#installation)
2. [Usage](#usage)
    - [Generate services](#generate-services)
    - [Generate actions](#generate-actions)
    - [Generate repositories](#generate-repositories)
    - [Generate traits](#generate-traits)
    - [Generate pivot tables](#generate-pivot-tables)
3. [Contributing](#contributing)
4. [License](#license)

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

[](#installation)

Install the package with composer.

```
composer require timwassenburg/laravel-artisan-extender --dev
```

Usage
-----

[](#usage)

### Generate services

[](#generate-services)

To generate a new service use the following artisan command.

```
php artisan make:service UserService
```

Optionally, you can add multiple method names (seperated by comma) with the `--methods` param.

```
php artisan make:service UserService --methods=register,login,logout
```

[Learn more about the Service Generator](https://github.com/timwassenburg/laravel-service-generator)

### Generate actions

[](#generate-actions)

Run the following command on the command-line to generate a new action.

```
php artisan make:action {name}
```

[Learn more about the Action Generator](https://github.com/timwassenburg/laravel-action-generator)

### Generate repositories

[](#generate-repositories)

Run the following command.

```
php artisan make:repository UserRepository
```

This example will generate the following files:

```
app\Repositories\Eloquent\UserRepository
app\Repositories\UserRepositoryInterface
```

[Learn more about the Repository Generator](https://github.com/timwassenburg/laravel-repository-generator)

### Generate traits

[](#generate-traits)

Run the following command on the command-line to generate a new trait.

```
php artisan make:trait {name}
```

Optionally, you can add multiple method names (seperated by comma) with the `--methods` param.

[Learn more about the Trait Generator](https://github.com/timwassenburg/laravel-trait-generator)

```
php artisan make:trait Notifiable --methods=notify,notifications
```

### Generate pivot tables

[](#generate-pivot-tables)

Run the following command on the command-line to generate a new migration for the pivot table.

```
php artisan make:pivot {first_table_name} {second_table_name}
```

The command will create a new migration in `database/migrations`. Run the migrations to create the table.

```
php artisan migrate
```

[Learn more about the Pivot Table Generator](https://github.com/timwassenburg/laravel-pivot-table-generator)

Contributing
------------

[](#contributing)

Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are **greatly appreciated**.

If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!

1. Fork the Project
2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`)
3. Commit your Changes (`git commit -m 'Add some AmazingFeature'`)
4. Push to the Branch (`git push origin feature/AmazingFeature`)
5. Open a Pull Request

License
-------

[](#license)

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

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity25

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity44

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

1117d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/18ef476c8a9d76d44ab65724fb4be330c1c4ce90e2be793bc4628b85bd0d5ba5?d=identicon)[timwass](/maintainers/timwass)

---

Top Contributors

[![timwassenburg](https://avatars.githubusercontent.com/u/75377381?v=4)](https://github.com/timwassenburg "timwassenburg (5 commits)")

---

Tags

phpclilaravelgeneratorartisanservicepatternactionrespository

### Embed Badge

![Health badge](/badges/timwassenburg-laravel-artisan-extender/health.svg)

```
[![Health](https://phpackages.com/badges/timwassenburg-laravel-artisan-extender/health.svg)](https://phpackages.com/packages/timwassenburg-laravel-artisan-extender)
```

###  Alternatives

[nunomaduro/collision

Cli error handling for console/command-line PHP applications.

4.6k331.8M8.5k](/packages/nunomaduro-collision)[timwassenburg/laravel-service-generator

Generate Laravel services

104233.1k2](/packages/timwassenburg-laravel-service-generator)[nunomaduro/laravel-console-menu

Laravel Console Menu is an output method for your Laravel/Laravel Zero commands.

815412.0k48](/packages/nunomaduro-laravel-console-menu)[nunomaduro/laravel-console-task

Laravel Console Task is a output method for your Laravel/Laravel Zero commands.

2582.1M11](/packages/nunomaduro-laravel-console-task)[nunomaduro/laravel-console-summary

A Beautiful Laravel Console Summary for your Laravel/Laravel Zero commands.

662.0M3](/packages/nunomaduro-laravel-console-summary)[nunomaduro/laravel-console-dusk

Laravel Console Dusk allows the usage of Laravel Dusk in Laravel/Laravel Zero artisan commands.

16255.4k7](/packages/nunomaduro-laravel-console-dusk)

PHPackages © 2026

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