pashkinz92 / yii2-app-advanced
Yii 2 Advanced Project Template
Installs: 71
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 1 267
Type:project
pkg:composer/pashkinz92/yii2-app-advanced
Requires
- php: >=5.4.0
 - bower-asset/jquery: 2.2.*@stable | 2.1.*@stable | 1.11.*@stable | 1.12.*@stable
 - bower-asset/noty: ^2.3
 - bower-asset/tooltipster: ^3.3
 - brussens/yii2-maintenance-mode: ~0.2.6
 - developeruz/yii2-db-rbac: *@stable
 - dmstr/yii2-adminlte-asset: ~2.4@stable
 - drmabuse/yii2-slick-carousel: dev-master
 - kartik-v/yii2-editable: *@stable
 - kartik-v/yii2-grid: *@stable
 - loveorigami/yii2-notification-wrapper: 6.3
 - newerton/yii2-fancybox: dev-master
 - yiisoft/yii2: ~2.0.6@stable
 - yiisoft/yii2-bootstrap: ~2.0.0
 - yiisoft/yii2-swiftmailer: ~2.0.0
 - yurkinx/yii2-image: ^1.1
 
Requires (Dev)
- friendsofphp/php-cs-fixer: ^2.4
 - yiisoft/yii2-debug: ~2.0.0
 - yiisoft/yii2-faker: ~2.0.0
 - yiisoft/yii2-gii: ~2.0.0
 
- dev-master
 - 2.2
 - 2.1.20
 - 2.1.9
 - 2.1.8
 - 2.1.7
 - 2.1.6
 - 2.1.5
 - 2.1.4
 - 2.1.3
 - 2.1.2
 - 2.1.1
 - 2.0.20
 - 2.0.19
 - 2.0.11
 - 2.0.10
 - 2.0.9.9
 - 2.0.9.8
 - 2.0.9.7
 - 2.0.9.6
 - 2.0.9.5
 - 2.0.9.4
 - 2.0.9.3
 - 2.0.9.2
 - 2.0.9.1
 - 2.0.9
 - 2.0.8
 - 2.0.7
 - 2.0.6
 - 2.0.4
 - 2.0.3
 - 2.0.2
 - 2.0.1
 - 2.0.0
 - 2.0.0-rc
 - 2.0.0-beta
 - 2.0.0-alpha
 - dev-code_improvements
 - dev-tryModelLogger
 - dev-userModelFixes
 - dev-fixLteViewLayouts
 
This package is auto-updated.
Last update: 2025-10-29 02:02:55 UTC
README
Yii 2 Advanced Project Template is a skeleton Yii 2 application best for developing complex Web applications with multiple tiers.
The template includes three tiers: front end, back end, and console, each of which is a separate Yii application.
The template is designed to work in a team development environment. It supports deploying the application in different environments.
Documentation is at docs/guide/README.md.
DIRECTORY STRUCTURE
common
    config/              contains shared configurations
    mail/                contains view files for e-mails
    models/              contains model classes used in both backend and frontend
    tests/               contains tests for common classes    
console
    config/              contains console configurations
    controllers/         contains console controllers (commands)
    migrations/          contains database migrations
    models/              contains console-specific model classes
    runtime/             contains files generated during runtime
backend
    assets/              contains application assets such as JavaScript and CSS
    config/              contains backend configurations
    controllers/         contains Web controller classes
    models/              contains backend-specific model classes
    runtime/             contains files generated during runtime
    tests/               contains tests for backend application    
    views/               contains view files for the Web application
    web/                 contains the entry script and Web resources
frontend
    assets/              contains application assets such as JavaScript and CSS
    config/              contains frontend configurations
    controllers/         contains Web controller classes
    models/              contains frontend-specific model classes
    runtime/             contains files generated during runtime
    tests/               contains tests for frontend application
    views/               contains view files for the Web application
    web/                 contains the entry script and Web resources
    widgets/             contains frontend widgets
vendor/                  contains dependent 3rd-party packages
environments/            contains environment-based overrides