PHPackages                             yii2-extensions/app-advanced - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Framework](/categories/framework)
4. /
5. yii2-extensions/app-advanced

ActiveProject[Framework](/categories/framework)

yii2-extensions/app-advanced
============================

Web Application Advanced

4151PHP

Since Nov 17Pushed 2y ago1 watchersCompare

[ Source](https://github.com/yii2-extensions/app-advanced)[ Packagist](https://packagist.org/packages/yii2-extensions/app-advanced)[ RSS](/packages/yii2-extensions-app-advanced/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependenciesVersions (2)Used By (0)

 [ ![](https://camo.githubusercontent.com/cc75562bca6e54e98046e4fb187ef8d96c997a8f31c6f4d2f6ed0c816413b47a/68747470733a2f2f7777772e7969696672616d65776f726b2e636f6d2f696d6167652f7969695f6c6f676f5f6c696768742e737667) ](https://github.com/yii2-extensions/app-advanced)

Web Application Advanced
========================

[](#web-application-advanced)

 [ ![php-version](https://camo.githubusercontent.com/cfe9179013aaeb962182231f5cc56946d96d3c7356e64008b58bad1025cfb1e9/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5048502d253345253344382e312d373837434235) ](https://www.php.net/releases/8.1/en.php) [ ![yii2-version](https://camo.githubusercontent.com/f946cb5d9010fb3cc3f9d9530b51fee224bdbabe1345dd3f090dfbca82446217/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5969693225323076657273696f6e2d322e322d626c7565) ](https://github.com/yiisoft/yii2/tree/2.2) [ ![PHPUnit](https://github.com/yii2-extensions/app-advanced/actions/workflows/build.yml/badge.svg) ](https://github.com/yii2-extensions/app-advanced/actions/workflows/build.yml) [ ![Codecov](https://camo.githubusercontent.com/4ac5e084b02b6658e950ca505fc1afd9a9d622a9d50a802f32eb5f92fb05ef45/68747470733a2f2f636f6465636f762e696f2f67682f796969322d657874656e73696f6e732f6170702d616476616e6365642f67726170682f62616467652e7376673f746f6b656e3d6a564966706977395674) ](https://codecov.io/gh/yii2-extensions/app-advanced) [ ![PHPStan](https://github.com/yii2-extensions/gii/actions/workflows/static.yml/badge.svg) ](https://github.com/yii2-extensions/app-advanced/actions/workflows/static.yml) [ ![PHPStan level](https://camo.githubusercontent.com/17a9258ed6588a68408bb21370872041ef994ea597548332232523398ab33dc6/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5048505374616e2532306c6576656c2d352d626c7565) ](https://github.com/yii2-extensions/app-advanced/actions/workflows/static.yml) [ ![Code style](https://camo.githubusercontent.com/975bce09466e6a05652ddde4ec0af006d1e16401fea7dab6581e55d81f384ef9/68747470733a2f2f6769746875622e7374796c6563692e696f2f7265706f732f3730363736373334392f736869656c643f6272616e63683d6d61696e) ](https://github.styleci.io/repos/706767349?branch=main)

[![app-avanced-frontend](docs/home-frontend.png)](docs/home-frontend.png)

[![app-avanced-backend](docs/home-backend.png)](docs/home-backend.png)

Directory structure
-------------------

[](#directory-structure)

```
root
├── config
│   ├── backend                 Backend configuration.
│   ├── console                 Console configuration.
│   ├── frontend                Frontend configuration.
│   ├── config-plugin.php       Plugin configuration.
│   ├── messages.php            Translation configuration.
│   ├── params-backend.php      Backend parameters.
│   ├── params-console.php      Console parameters.
│   ├── params-frontend.php     Frontend parameters.
│   └── params.php              Common parameters.
├── backend
│   ├── config                  Backend tests configuration.
│   ├── public                  Backend web server public.
│   ├── src
│   │   └── UseCase
│   │       └── Site            Site use case.
│   └── Tests                   Backend tests.
├── common
│   └── src
│       └── Framework
│           └── Asset           Common asset bundles files.
│           └── Controller      Common controller files.
│           └── resource
│               ├── css         Common Css files.
│               ├── js          Common Js files.
│               ├── layout      Common Layout files.
│               └── message     Common Translation files.
├── console
│   ├── config                  Console tests configuration.
│   └── src
│       ├── UseCase
│       │   └── Hello           Hello use case.
│       └── Tests               Console tests.
├── frontend
│   ├── config                  Frontend tests configuration.
│   ├── public                  Frontend web server public.
│   └── src
│       ├── Framework
│       │   ├── EventHandler    Event handler files.
│       ├── UseCase
│       │   ├── About           About use case.
│       │   ├── Contact         Contact use case.
│       │   └── Site            Site use case.
│       └── Tests               Frontend tests.
└── vendor                      Composer dependencies.

```

Installation
------------

[](#installation)

If you do not have [Composer](http://getcomposer.org/ "Composer"), you may install it by following the instructions at [getcomposer.org](http://getcomposer.org/doc/00-intro.md#installation-nix "getcomposer.org").

You can then install this project app-basic using the following command:

```
composer create-project --prefer-dist --stability=dev yii2-extensions/app-advanced myapp
```

Now you should be able to access the application advanced through the following URL, assuming `frontend/public` amd `backend/public` is the directory directly under the Web root.

***Virtual Host:***

```
http://localhost:8080/

```

***Backend Server Yii:***

```
./yii serve -t backend/public -r backend/public/index.php
```

***Frontend Server Yii:***

```
./yii serve -t frontend/public -r frontend/public/index.php
```

**Console commands:**

```
./yii hello/index
```

Tests
-----

[](#tests)

```
// download all composer dependencies root project
$ composer update --prefer-dist -vvv

// run all tests with code coverage
$ vendor/bin/codecept run --coverage-xml

```

Our social networks
-------------------

[](#our-social-networks)

[![Twitter](https://camo.githubusercontent.com/d077c362ac639792171af8bc002ee827816733dfc0925f70b557e6d151022226/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f747769747465722d666f6c6c6f772d3144413146323f6c6f676f3d74776974746572266c6f676f436f6c6f723d314441314632266c6162656c436f6c6f723d3535353535353f7374796c653d666c6174)](https://twitter.com/Terabytesoftw)

License
-------

[](#license)

The MIT License. Please see [License File](LICENSE.md) for more information.

###  Health Score

16

—

LowBetter than 5% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity22

Early-stage or recently created project

 Bus Factor1

Top contributor holds 93.3% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/524d2b46690f41fce7188d369488a35e7624e6c5a264d82aacd08548bfd156ab?d=identicon)[terabytesoftw](/maintainers/terabytesoftw)

---

Top Contributors

[![terabytesoftw](https://avatars.githubusercontent.com/u/42547589?v=4)](https://github.com/terabytesoftw "terabytesoftw (14 commits)")[![luizcmarin](https://avatars.githubusercontent.com/u/67489841?v=4)](https://github.com/luizcmarin "luizcmarin (1 commits)")

---

Tags

app-advancedbootstrap5web-applicationyii2

### Embed Badge

![Health badge](/badges/yii2-extensions-app-advanced/health.svg)

```
[![Health](https://phpackages.com/badges/yii2-extensions-app-advanced/health.svg)](https://phpackages.com/packages/yii2-extensions-app-advanced)
```

###  Alternatives

[laravel/telescope

An elegant debug assistant for the Laravel framework.

5.2k67.8M192](/packages/laravel-telescope)[spiral/roadrunner

RoadRunner: High-performance PHP application server and process manager written in Go and powered with plugins

8.4k12.2M84](/packages/spiral-roadrunner)[nolimits4web/swiper

Most modern mobile touch slider and framework with hardware accelerated transitions

41.8k177.2k1](/packages/nolimits4web-swiper)[laravel/dusk

Laravel Dusk provides simple end-to-end testing and browser automation.

1.9k36.7M257](/packages/laravel-dusk)[laravel/prompts

Add beautiful and user-friendly forms to your command-line applications.

708181.8M593](/packages/laravel-prompts)[cakephp/chronos

A simple API extension for DateTime.

1.4k47.7M121](/packages/cakephp-chronos)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
