cbackup / yii2-console-runner-extension
An extension for running console commands on background in Yii framework.
Installs: 224
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 24
Type:yii2-extension
Requires
- yiisoft/yii2: *
Requires (Dev)
- yiisoft/yii2-debug: ~2.0.0
This package is not auto-updated.
Last update: 2025-03-30 08:53:09 UTC
README
An extension for running console commands on background in Yii framework.
Changelog
Unlike it's parent version, this fork has support for Windows and doesn't break compatibility with PHP-FPM.
Installation
Add the following to require
section of your composer.json
:
"cbackup/yii2-console-runner-extension": "*"
Then do composer install
.
Usage
Imported class:
use cbackup\console; $cr = new ConsoleRunner(['file' => '@my/path/to/yii']); $cr->run('controller/action param1 param2 ...');
Application component:
// config.php ... components [ 'consoleRunner' => [ 'class' => 'cbackup\console\ConsoleRunner', 'file' => '@my/path/to/yii' // or an absolute path to console file ] ] ... // some-file.php Yii::$app->consoleRunner->run('controller/action param1 param2 ...');