alikdex/notes

Notes module. Yii2

Maintainers

Details

github.com/AlikDex/notes

Source

Issues

Installs: 9

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

Type:yii2-extension

0.0.4 2018-11-04 21:32 UTC

This package is not auto-updated.

Last update: 2024-05-04 15:23:12 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"
    ]
}