2017 © Pedro Peláez
 

yii2-module cm-jobcontrol

Job Watchdog Module for yii2

image

frenzelgmbh/cm-jobcontrol

Job Watchdog Module for yii2

  • Friday, May 12, 2017
  • by philippfrenzel
  • Repository
  • 1 Watchers
  • 2 Stars
  • 26 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

cm-jobcontrol

Yii2 JobControle Module, (*1)

Author: Philipp Frenzel philipp@frenzel.net, (*2)

Usage

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)

Used open source extensions

  • yii2-workflow
  • yii2-json-api

Installation

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',

The Versions

12/05 2017

dev-master

9999999-dev

Job Watchdog Module for yii2

  Sources   Download

MIT

The Requires

 

The Development Requires

module yii job control