asmoday74/yii2-tasks

Task manager for Yii2

Installs: 9

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Type:yii2-extension

1.0.9 2024-06-22 16:40 UTC

This package is auto-updated.

Last update: 2024-06-22 16:41:52 UTC


README

Yii2 Tasks Module

Task manager for Yii2

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist asmoday74/yii2-tasks "*"

or add

"asmoday74/yii2-tasks": "*"

to the require section of your composer.json file.

Configuration

To add a module to the project, add the following data in your configuration file:

'modules' => [
    ...
    'tasks' => [
        'class' => 'asmoday74\tasks\Module'
    ],
    ...
],

Migrations

After configure module, run the following command in the console:

$ php yii tasks/init

And select the operation "Apply all module migrations"

or execute

php yii migrate --migrationPath=@vendor/asmoday74/yii2-tasks/src/migrations