dev-master
9999999-devJob Watchdog Module for yii2
MIT
The Requires
- php >=5.5.0
 - yiisoft/yii2 ^2.0.10
 - tuyakhov/yii2-json-api ^0.1.1
 - raoul2000/yii2-workflow *
 - yii2tech/ar-softdelete *
 
The Development Requires
module yii job control
                         Wallogit.com
                    
                    2017 © Pedro Peláez
                    
                    
                    
                    
                
                
            
Job Watchdog Module for yii2
Yii2 JobControle Module, (*1)
Author: Philipp Frenzel philipp@frenzel.net, (*2)
The job control module enables a REST-Service that allows you to track jobs beeing started, executed an completed. It's a helper for our projects that allows us to keep an overview while some of our solutions need to track several 100 tasks a day., (*3)
The prefered way to install this module is through composer., (*4)
Either run, (*5)
php composer.phar require --prefer-dist frenzelgmbh/cm-jobcontrol "*"
or add the following line to the require section of your composer.json, (*6)
"frenzelgmbh/cm-jobcontrol":"*",
and within you web-config - modules, pls. add, (*7)
    'modules' => [
        'jobcontrol' => [
            'class' => 'net\frenzel\jobcontrol',
        ],
        ...
    ]
and within you web-config - components, pls. add, (*8)
    'components' => [
        'JobcontrolWorkflow' => [
            'class' => 'raoul2000\workflow\source\file\WorkflowFileSource',
        ],
        ...
    ]
As the module needs to save some data, pls. execute the migrations under, (*9)
'@vendor/frenzelgmbh/cm-jobcontrol/src/migrations',
Job Watchdog Module for yii2
MIT
module yii job control