alikdex / notes
Notes module. Yii2
0.0.4
2018-11-04 21:32 UTC
Requires
- yiisoft/yii2: ~2.0.15
This package is not auto-updated.
Last update: 2026-03-08 00:27:29 UTC
README
Yii2 notes module
Install
'modules' => [
'notes' => [
'class' => Adx\Module\NoteModule\Module::class,
],
],
Migrations
'controllerMap' => [
'migrate' => [
'class' => yii\console\controllers\MigrateController::class,
'migrationNamespaces' => [],
'migrationPath' => [
'@vendor/alikdex/notes/src/Migration',
],
],
],
or in composer
"scripts": {
"post-update-cmd": [
"yes | php yii migrate --migrationPath=@vendor/alikdex/notes/src/Migration"
],
"post-install-cmd": [
"yes | php yii migrate --migrationPath=@vendor/alikdex/notes/src/Migration"
]
}