Package Data | |
---|---|
Maintainer Username: | Darsain |
Package Create Date: | 2012-10-26 |
Package Last Update: | 2017-01-04 |
Home Page: | |
Language: | CSS |
License: | MIT |
Last Refreshed: | 2024-11-08 03:00:24 |
Package Statistics | |
---|---|
Total Downloads: | 56,962 |
Monthly Downloads: | 11 |
Daily Downloads: | 0 |
Total Stars: | 170 |
Total Watchers: | 13 |
Total Forks: | 44 |
Total Open Issues: | 5 |
In-browser console for Laravel 4 PHP framework.
This bundle 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 bundle is intended for a local testing, and shouldn't get nowhere near your production servers!
Add this into require-dev
in your composer.json
file:
"require-dev" : {
...
"darsain/laravel-console": "dev-master"
}
Run an update:
php composer.phar update
Register the console service provider in app/config/app.php
:
'providers' => array(
...
'Darsain\Console\ConsoleServiceProvider',
);
Then publish the bundle assets:
php artisan asset:publish
And you are done! Open the console in:
yourdomain.com/console
Laravel 3 version along with installation process can be found in the L3 branch.