isbkch/laravel-rich-console

Rich and Interactive make CLI replacement for Laravel with autocompletion

1.0 2019-04-11 12:02 UTC

This package is auto-updated.

Last update: 2024-05-11 23:13:33 UTC


README

Getting Started

To get started you need to install the package with Composer:

composer require isbkch/laravel-rich-console

Laravel >= 5.5

That's it! The package is auto-discovered on 5.5 and up!

Laravel <= 5.4

Add the package service provider to your providers array in config/app.php

'providers' => [
    // ...
    Isbkch\Commands\MakeServiceProvider::class,
],

To start using this package, run this command in your terminal and follow the onscreen prompts:

php artisan make

Preview