PHPackages                             maybeworks/yii2-app.bootstrap - 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. maybeworks/yii2-app.bootstrap

AbandonedArchivedYii2-extension[Framework](/categories/framework)

maybeworks/yii2-app.bootstrap
=============================

Application runner for Yii PHP framework 2.0

0134PHP

Since Feb 25Pushed 10y ago1 watchersCompare

[ Source](https://github.com/bartlab-archive/yii2-app.bootstrap)[ Packagist](https://packagist.org/packages/maybeworks/yii2-app.bootstrap)[ RSS](/packages/maybeworks-yii2-appbootstrap/feed)WikiDiscussions master Synced 4w ago

READMEChangelogDependenciesVersions (1)Used By (0)

yii2-app.bootstrap
==================

[](#yii2-appbootstrap)

Application runner for Yii PHP framework 2.0

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

[](#installation)

The preferred way to install this extension is through [composer](http://getcomposer.org/download/).

Either run

```
php composer.phar require "maybeworks/yii2-app.bootstrap" "*"

```

or add

```
"maybeworks/yii2-app.bootstrap" : "*"
```

to the require section of your application's `composer.json` file.

Usage
-----

[](#usage)

Alternative project structure

```
.
├── apps
│   ├── backend
│   │    └── ...
│   ├── console
│   │    └── ...
│   └── frontend
│         └── ...
├── common
│   └── ...
├── config
│   ├── backend.php
│   ├── bootstrap.php
│   ├── common.php
│   ├── console.php
│   ├── frontend.php
│   ├── local-example.php
│   └── local.php
├── db
│   ├── fixtures
│   │   └── ...
│   └── migrations
│        └── ...
├── runtime
│   └── ...
├── vendor
│   └── ...
├── web
│   ├── backend
│   │   ├── favicon.ico
│   │   └── index.php
│   ├── frontend
│   │   ├── favicon.ico
│   │   └── index.php
│   └── static
│       └── assets
│           └── ...
└── yii

```

Local config example - config/local.php

```
