Download the PHP package tecnocreaciones/console-bundle without Composer
On this page you can find all versions of the php package tecnocreaciones/console-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download tecnocreaciones/console-bundle
More information about tecnocreaciones/console-bundle
Files in tecnocreaciones/console-bundle
Download tecnocreaciones/console-bundle
More information about tecnocreaciones/console-bundle
Files in tecnocreaciones/console-bundle
Vendor tecnocreaciones
Package console-bundle
Short Description This bundle allows you accessing the symfony2 console via your browser
License MIT
Package console-bundle
Short Description This bundle allows you accessing the symfony2 console via your browser
License MIT
Please rate this library. Is it a good library?
Informations about the package console-bundle
ConsoleBundle
This bundle allows you accessing the Symfony2 console via your browser.
Features
- Colored output
- Autocompletion for command names
- Local command history (localStorage)
- works
Installation
-
Add to your composer.json file and run
// composer.json "require": { ... "coresphere/console-bundle": "dev-master", ... }
-
Add the following route to your routing configuration
#app/config/routing_dev.yml _console: resource: "@CoreSphereConsoleBundle/Resources/config/routing.yml" prefix: /_console
-
Register the bundle in you AppKernel in the development section
// app/AppKernel.php public function registerBundles() { $bundles = array( // other bundles here... ); if (in_array($this->getEnvironment(), array('dev', 'test'))) { // ... $bundles[] = new CoreSphere\ConsoleBundle\CoreSphereConsoleBundle(); } return $bundles; }
-
run the assets:install command to install the css and js files
./app/console assets:install web
Tips
- Type to clear the console window
Preview
Dependencies
- jQuery
- Twig
Compatibility
Tested with:
- Chrome
- Firefox 4
- Opera 11
- Safari 5
Todo
- Write Javascript tests
- Add console as "pop up" to web developer toolbar
- Figure out how to allow interactive mode (possible? extreme hacky?)
All versions of console-bundle with dependencies
PHP Build Version
Package Version
The package tecnocreaciones/console-bundle contains the following files
Loading the files please wait ....