firestorm23 / command-runner-bundle
Fork of borNfreee/CommandRunnerBundle. Executes symfony console command from a Controller.
Package info
github.com/firestorm23/CommandRunnerBundle
Type:symfony-bundle
pkg:composer/firestorm23/command-runner-bundle
dev-master
2016-01-20 21:38 UTC
Requires
- php: >=5.3.0
This package is not auto-updated.
Last update: 2026-03-05 01:27:37 UTC
README
This is fork of borNfreee/CommandRunnerBundle. I fixed the issue with wrong work of non-value command parameters.
CommandRunnerBundle
Executes Symfony2 console command from Controller (HTTP request).
Installation
This bundle is available on Packagist:
To install it, run:
$ composer require mrafalko/command-runner-bundle:dev-master
Then add the bundle to app/AppKernel.php:
public function registerBundles() { return array( ... new Mrafalko\CommandRunnerBundle\MrafalkoCommandRunnerBundle(), ... ); }
Then import routing file:
# app/config/routing.yml mrafalko_command_runner: resource: "@MrafalkoCommandRunnerBundle/Controller/CommandRunnerController.php" type: annotation prefix: /
Examples
Run the command from your URL: