jarrus90 / yii2-support
This package is abandoned and no longer maintained.
No replacement package was suggested.
Basic Yii2 content module
Package info
github.com/jarrus90/yii2-support
Type:yii2-extension
pkg:composer/jarrus90/yii2-support
dev-master
2017-10-19 11:50 UTC
Requires
- php: >=5.4.0
- jarrus90/yii2-core: *
- jarrus90/yii2-multilang: *
- jarrus90/yii2-redactor: *
- jarrus90/yii2-user: *
- kartik-v/yii2-grid: *
- kartik-v/yii2-widget-select2: *
- yiisoft/yii2: ~2.0
This package is not auto-updated.
Last update: 2023-05-24 05:50:19 UTC
README
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-support is released under the BSD-3-Clause License. See the bundled LICENSE.md for details.
##Requirements
YII 2.0
Usage
- Install with Composer
"require": { "jarrus90/yii2-support": "1.*", }, php composer.phar update
Restrict and split frontend and backend applications
'modules' => [
'support' => [
'as frontend' => 'jarrus90\Support\filters\FrontendFilter',
],
],
'modules' => [
'support' => [
'as backend' => 'jarrus90\Support\filters\BackendFilter',
],
],