Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 540 Bytes

README.md

File metadata and controls

18 lines (14 loc) · 540 Bytes

ArtisanCommands

This repository should be a collection of usefull Laravel 4 Artisan commands. Feel free to contribute your own commands.

Installation

To install any of these, just copy the desired command to your app/commands folder and register the command in your app/start/artisan.php file like so:

Artisan::add(new CustomCommand);

Create your own

Please refer to the official docs if you like to create your own commands: Laravel 4 Documentation