alikdex / notes
Notes module. Yii2
Installs: 9
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- yiisoft/yii2: ~2.0.15
This package is not auto-updated.
Last update: 2024-11-02 17:54:51 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"
]
}