jarrus90 / yii2-core
This package is abandoned and no longer maintained.
No replacement package was suggested.
Several common basic functionality for personal modules
0.0.4
2016-09-23 11:20 UTC
Requires
- php: >=5.4.0
- dmstr/yii2-adminlte-asset: 2.*
- jarrus90/yii2-user: *
- kartik-v/yii2-widget-alert: *
- kartik-v/yii2-widget-growl: *
- yiisoft/yii2: ~2.0
This package is not auto-updated.
Last update: 2023-05-24 05:50:47 UTC
README
Several common basic functionality for personal modules
NOTE: Module is in initial development. Anything may change at any time.
Contributing to this project
Anyone and everyone is welcome to contribute. Please take a moment to review the guidelines for contributing.
License
Yii2-core is released under the BSD-3-Clause License. See the bundled LICENSE.md for details.
##Requirements
YII 2.0
##Installation
"require": { "jarrus90/yii2-core": "*", }, php composer.phar update
#Console controllers
##Migration Thanks to dmstr
Console Migration Command with multiple paths/aliases support
'controllerMap' => [ 'migrate' => [ 'class' => 'jarrus90\Core\Console\MigrateController' ], ],
##Assets cleanup Thanks to assayer-pro
Yii2 console command to clean web/assets/ directory
'controllerMap' => [ 'asset' => [ 'class' => 'jarrus90\Core\Console\AssetController', ], ],