asmoday74 / yii2-tasks
Task manager for Yii2
Installs: 22
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- php: >=8.2
- ext-json: *
- ext-mbstring: *
- ext-pcntl: *
- ext-posix: *
- asmoday74/yii2-adminlte3: *
- yiisoft/yii2: ^2.0.42
- yiisoft/yii2-bootstrap5: ~2.0.4
This package is auto-updated.
Last update: 2025-03-15 02:20:10 UTC
README
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