Download the PHP package midnite81/laracommander without Composer
On this page you can find all versions of the php package midnite81/laracommander. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download midnite81/laracommander
More information about midnite81/laracommander
Files in midnite81/laracommander
Package laracommander
Short Description A package to make artisan commands available on a dashboard
License MIT
Informations about the package laracommander
LaraCommander - Artisan Web Dashboard
A web dashboard for Artisan Commands
Once you've installed LaraCommander, you may wish to view the guide to How the Dashboard works
Installation
This package requires PHP 5.6+, and includes a Laravel 5 Service Provider.
To install through composer include the package in your composer.json
.
Run composer install
or composer update
to download the dependencies or you can run composer require midnite81/laracommander
.
Laravel 5 Integration
If you're using Laravel 5.5, you can ignore the first part of this as Laravel will auto discover this package, but you will need to publish the config file.
To use the package with Laravel 5 firstly add the LaraCommander service provider to the list of service providers
in app/config/app.php
.
Add in the facades to the aliases section of app/config/app.php
.
Publish the config
Publish the config files using
php artisan vendor:publish --provider="Midnite81\LaraCommander\CommandServiceProvider"
If you're using Laravel 5.5 or above you can simply type php artisan vendor:publish
and select
Provider: Midnite81\LaraCommander\CommandServiceProvider
Configuration File
Once you have published the config files, you will find a laracommander.php
file in the config
folder. It is
important that you look through these settings and update these where necessary. By default LaraCommander isn't
set to use any auth middleware, which can be set in the config depending on your needs.
Setup complete
If you've followed the steps above you should now be able to load the LaraCommander Dashboard by going to http://example.com/console (or whatever url you're specified in the config).