2017 © Pedro Peláez
 

library laravel-console

Browser console for Laravel Framework.

image

darsain/laravel-console

Browser console for Laravel Framework.

  • Wednesday, July 30, 2014
  • by Darsain
  • Repository
  • 14 Watchers
  • 185 Stars
  • 46,607 Installations
  • CSS
  • 0 Dependents
  • 0 Suggesters
  • 48 Forks
  • 6 Open issues
  • 1 Versions
  • 1 % Grown

The README.md

Laravel 4 Console

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)

Screenshots

Index Output SQL, (*5)

Installation

Laravel 4

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

Laravel 3 version along with installation process can be found in the L3 branch., (*11)

The Versions

30/07 2014

dev-master

9999999-dev

Browser console for Laravel Framework.

  Sources   Download

MIT

The Requires

 

laravel console browser