Download the PHP package danielemontecchi/laravel-custom-makes without Composer
On this page you can find all versions of the php package danielemontecchi/laravel-custom-makes. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download danielemontecchi/laravel-custom-makes
More information about danielemontecchi/laravel-custom-makes
Files in danielemontecchi/laravel-custom-makes
Package laravel-custom-makes
Short Description Easily create and manage custom make: commands in Laravel using a reusable stub system and a guided CLI wizard.
License MIT
Homepage https://danielemontecchi.com
Informations about the package laravel-custom-makes
Laravel Custom Makes
Generate custom Laravel classes using reusable stubs with Artisan.
๐ฆ Installation
You can install the package via Composer:
โ๏ธ Configuration
You can optionally publish the config file:
This will create config/laravel-custom-makes.php
with the following options:
stubs_path
: path for storing custom stub files (default:stubs
)
๐ Usage
Create a custom stub
To define a new generator stub:
This creates a stub file:
If the stub already exists, the command will abort.
The generated stub will contain a simple template.
Generate a class from a custom stub
Use make:custom
with the stub type and class name:
This will create:
If no name is passed, it will generate (or suggest) the stub instead.
You can also nest namespaces, e.g.
Admin/UserService
will generateapp/Services/Admin/UserService.php
Listing available custom generators
Run the following to see all available custom stubs:
The command filters out Laravel native stub types.
๐ Stub management
Custom stubs are stored in:
You can edit or remove these files manually. Stub content uses placeholders like {{ namespace }}
, {{ class }}
, etc.
โ Supported placeholders
All stub templates can include the following placeholders:
{{ namespace }}
: Fully-qualified namespace of the class{{ class }}
: The class name{{ name }}
: The raw input name
๐งช Running tests
To run the test suite:
Tests are powered by Pest and Orchestra Testbench.
License
Laravel Custom Makes is open-source software licensed under the MIT license. See the LICENSE.md file for full details.
Made with โค๏ธ by Daniele Montecchi
All versions of laravel-custom-makes with dependencies
illuminate/console Version ^10.0|^11.0|^12.0
illuminate/support Version ^10.0|^11.0|^12.0