Package Data | |
---|---|
Maintainer Username: | teepluss |
Maintainer Contact: | teepluss@gmail.com (Teepluss) |
Package Create Date: | 2015-02-06 |
Package Last Update: | 2020-11-30 |
Home Page: | |
Language: | CSS |
License: | MIT |
Last Refreshed: | 2024-11-11 15:12:53 |
Package Statistics | |
---|---|
Total Downloads: | 49,686 |
Monthly Downloads: | 45 |
Daily Downloads: | 4 |
Total Stars: | 42 |
Total Watchers: | 4 |
Total Forks: | 12 |
Total Open Issues: | 1 |
In-browser console for Laravel 5 PHP framework.
This package is a re-published, re-organised and maintained version of darsain/laravel-console, which isn't maintained anymore.
This package executes your code within ConsoleController@postExecute
context, and displays the produced output.
The purpose is to easily test your stuff without creating garbage routes and controllers just to run something, ... I'm sure you know what I'm talking about :)
This package is intended for a local testing, and shouldn't get nowhere near your production servers!
To install through composer, simply run the following command:
php composer require teepluss/console
If you don't use Laravel 5.5+ and its package discovery feature, register the console service provider in config/app.php
:
'providers' => [
...
Teepluss\Console\ConsoleServiceProvider::class,
];
Then publish the package assets:
php artisan vendor:publish --provider="Teepluss\Console\ConsoleServiceProvider"
And you are done! Open the console in:
yourdomain.com/console
The default username and password is username:password
You can change on config/console.php