dev-master
9999999-devBrowser console for Laravel Framework.
MIT
The Requires
- php >=5.3.0
- illuminate/support >=4.0.0
laravel console browser
Wallogit.com
2017 © Pedro Peláez
Browser console for Laravel Framework.
In-browser console for Laravel 4 PHP framework., (*1)
This bundle executes your code within ConsoleController@postExecute context, and displays the produced output., (*2)
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 :), (*3)
This bundle is intended for a local testing, and shouldn't get nowhere near your production servers!, (*4)
, (*5)
Add this into require-dev in your composer.json file:, (*6)
"require-dev" : {
...
"darsain/laravel-console": "dev-master"
}
Run an update:, (*7)
php composer.phar update
Register the console service provider in app/config/app.php:, (*8)
'providers' => array(
...
'Darsain\Console\ConsoleServiceProvider',
);
Then publish the bundle assets:, (*9)
php artisan asset:publish
And you are done! Open the console in:, (*10)
yourdomain.com/console
Laravel 3 version along with installation process can be found in the L3 branch., (*11)
Browser console for Laravel Framework.
MIT
laravel console browser