2017 © Pedro Peláez
 

project app

12factor Application Template for Yii 2.0 Framework

image

phundament/app

12factor Application Template for Yii 2.0 Framework

  • Tuesday, August 29, 2017
  • by schmunk
  • Repository
  • 48 Watchers
  • 316 Stars
  • 11,701 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 129 Forks
  • 28 Open issues
  • 100 Versions
  • 0 % Grown

The README.md

:rotating_light: THIS PROJECT IS DEPRECATED - Next version phd5 is available


phd4

formerly known as Phundament 4, (*1)

phd is a dockerized 12factor PHP application template for Yii Framework 2.0., (*2)

Requirements

For alternative installation methods, such as composer, see the docs., (*3)

Installation

Download or clone the repository and go to the application directory, (*4)

git clone https://github.com/phundament/app
cd app

Heads up! Phundament features Makefile targets for development and continuous integration, type make help to see all available targets or make all to run installation and setup., (*5)

Create environment configuration files, (*6)

cp .env-dist .env
cp docker-compose.override-dist.yml docker-compose.override.yml

Start the application stack, (*7)

docker-compose up -d

Run setup commands, (*8)

docker-compose run php composer install
docker-compose run php setup.sh

After startup is complete, open http://<DOCKER_HOST>:40080 to access the application and login with admin/admin., (*9)

Configuration

Environment overrides - docker-compose.override.yml

  • host-volumes for local development
  • port mappings

Environment defaults - docker-compose.yml

You can override any ENV variable in .env within a docker-compose.yml file., (*10)

  • VIRTUAL_HOST ~^myapp\. Virtual-host configuration for reverse proxy, adjust the virtual host parameter for web application, we'll use it later to easily access the web-server through a wildcard DNS.

Application defaults - .env

During development, it is recommended to change application configuration in the .env file, since it does not require restarting the containers., (*11)

Application, (*12)

  • APP_NAME unique application and container identifier [a-z0-9]
  • APP_TITLE display name of the application
  • APP_LANGUAGES available languages for URL manager (eg. en,de)
  • APP_ADMIN_EMAIL e-mail address of application admin user (default in ./yii app/create-admin-user)
  • APP_ADMIN_PASSWORD password of application admin user (default in ./yii app/create-admin-user)
  • APP_MIGRATION_LOOKUP comma separated list of Yii aliases to look for database migrations, eg. @app/migrations/data
  • APP_CONFIG_FILE custom configuration file to load
  • APP_COOKIE_VALIDATION_KEY unique and random string to prevent XSS
  • APP_PRETTY_URLS enable or disable nice URLs, allowed values 1 (yes) or 0 (no)
  • APP_ASSET_FORCE_PUBLISH force asset publishing after any changes to asset files. Note! This may degrade performance, use only during development.

Framework, (*13)

  • YII_DEBUG wheter to enable more verbose application output, eg. on PHP exceptions.
  • YII_ENV Yii application mode, allowed values dev, prod or test
  • YII_TRACE_LEVEL amount of caller levels to display for logging.

Database, (*14)

  • DB_ENV_MYSQL_ROOT_USER user to create databases
  • DB_ENV_MYSQL_ROOT_PASSWORD root password, eg. set from "${DB_ENV_MARIADB_PASS}"
  • DB_ENV_MYSQL_DATABASE database name
  • DB_ENV_MYSQL_PASSWORD database password
  • DB_ENV_MYSQL_USER database user
  • DB_PORT_3306_TCP_ADDR database hostname
  • DB_PORT_3306_TCP_PORT database port
  • DATABASE_TABLE_PREFIX table prefix for default database connection

Application configuration - config/main.php

For details of available application configuration, please refer to the Yii 2.0 Framework Definitive Guide., (*15)

Settings

Web UI for application wide key-value store., (*16)

  • pages Sitemap
    • availableRoutes
  • schmunk42.markdocs Markdown
    • markdownUrl URL or local path for markdown eg. https://raw.githubusercontent.com/phundament/docs/master
    • defaultIndexFile eg. 1-introduction/about.md
  • cms.assets Assets/LESS
    • useDbAsset boolean

Users & permissions

Default users

  • admin

Default roles

  • Editor
  • Public

:bulb: To enable public access you need to assign permissions, like app_site, docs_default, to the Public role., (*17)

Testing

First, build your application image, (*18)

docker-compose build 

Set environment variables for test stack, (*19)

export COMPOSE_PROJECT_NAME=testapp
export BUILD_PREFIX=app

Start test stack and enter tester CLI container, (*20)

docker-compose -f docker-compose.yml -f build/compose/test.override.yml up -d    
docker-compose -f docker-compose.yml -f build/compose/test.override.yml run tester bash    

Setup application (container bash), (*21)

$ setup.sh

Run test suites (container bash), (*22)

$ codecept run functional prod
$ codecept run acceptance prod

:information_source: YII_ENV must be set to test when running codeception., (*23)

Deployment

Required variables for building & pushing docker images., (*24)

  • REGISTRY_USER
  • REGISTRY_PASS
  • REGISTRY_HOST
  • IMAGE_NAME

Built by *dmstr, Stuttgart :de:, (*25)

The Versions

29/08 2017

dev-master

9999999-dev http://www.phundament.com/

12factor Application Template for Yii 2.0 Framework

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework template boilerplate yii2 app application docker dotenv docker-compose phundament 12factor

28/08 2017

4.5.0

4.5.0.0 http://www.phundament.com/

12factor Application Template for Yii 2.0 Framework

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework template boilerplate yii2 app application docker dotenv docker-compose phundament 12factor

04/01 2017

4.4.0-rc1

4.4.0.0-RC1 http://www.phundament.com/

12factor Application Template for Yii 2.0 Framework

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework template boilerplate yii2 app application docker dotenv docker-compose phundament 12factor

11/12 2016

dev-feature/update-base-image

dev-feature/update-base-image http://www.phundament.com/

12factor Application Template for Yii 2.0 Framework

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework template boilerplate yii2 app application docker dotenv docker-compose phundament 12factor

11/12 2016

4.3.0

4.3.0.0 http://www.phundament.com/

12factor Application Template for Yii 2.0 Framework

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework template boilerplate yii2 app application docker dotenv docker-compose phundament 12factor

11/12 2016

4.3.0-rc2

4.3.0.0-RC2 http://www.phundament.com/

12factor Application Template for Yii 2.0 Framework

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework template boilerplate yii2 app application docker dotenv docker-compose phundament 12factor

11/05 2016

4.3.0-rc1

4.3.0.0-RC1 http://www.phundament.com/

12factor Application Template for Yii 2.0 Framework

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework template boilerplate yii2 app application docker dotenv docker-compose phundament 12factor

05/04 2016

4.3.0-beta6

4.3.0.0-beta6 http://www.phundament.com/

12factor Application Template for Yii 2.0 Framework

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework template boilerplate yii2 app application docker dotenv docker-compose phundament 12factor

05/04 2016

4.3.0-beta5

4.3.0.0-beta5 http://www.phundament.com/

12factor Application Template for Yii 2.0 Framework

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework template boilerplate yii2 app application docker dotenv docker-compose phundament 12factor

05/04 2016

4.3.0-beta4

4.3.0.0-beta4 http://www.phundament.com/

12factor Application Template for Yii 2.0 Framework

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework template boilerplate yii2 app application docker dotenv docker-compose phundament 12factor

05/04 2016

4.3.0-beta3

4.3.0.0-beta3 http://www.phundament.com/

12factor Application Template for Yii 2.0 Framework

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework template boilerplate yii2 app application docker dotenv docker-compose phundament 12factor

05/04 2016

4.3.0-beta2

4.3.0.0-beta2 http://www.phundament.com/

12factor Application Template for Yii 2.0 Framework

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework template boilerplate yii2 app application docker dotenv docker-compose phundament 12factor

31/03 2016

4.3.0-beta1

4.3.0.0-beta1 http://www.phundament.com/

12factor Application Template for Yii 2.0 Framework

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework template boilerplate yii2 app application docker dotenv docker-compose phundament 12factor

31/03 2016

dev-develop

dev-develop http://www.phundament.com/

12factor Application Template for Yii 2.0 Framework

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework template boilerplate yii2 app application docker dotenv docker-compose phundament 12factor

22/03 2016

dev-feature/view-config-update

dev-feature/view-config-update http://www.phundament.com/

12factor Application Template for Yii 2.0 Framework

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework template boilerplate yii2 app application docker dotenv docker-compose phundament 12factor

11/03 2016

4.2.0

4.2.0.0 http://www.phundament.com/

12factor Application Template for Yii 2.0 Framework

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework template boilerplate yii2 app application docker dotenv docker-compose phundament 12factor

07/03 2016

4.2.0-rc2

4.2.0.0-RC2 http://www.phundament.com/

12factor Application Template for Yii 2.0 Framework

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework template boilerplate yii2 app application docker dotenv docker-compose phundament 12factor

04/03 2016

4.2.0-rc1

4.2.0.0-RC1 http://www.phundament.com/

12factor Application Template for Yii 2.0 Framework

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework template boilerplate yii2 app application docker dotenv docker-compose phundament 12factor

28/02 2016

4.0.x-dev

4.0.9999999.9999999-dev http://www.phundament.com/

12factor Application Template for Yii 2.0 Framework

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework template boilerplate yii2 app application docker dotenv docker-compose phundament 12factor

28/02 2016

4.1.0

4.1.0.0 http://www.phundament.com/

12factor Application Template for Yii 2.0 Framework

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework template boilerplate yii2 app application docker dotenv docker-compose phundament 12factor

22/01 2016

dev-feature/postgres

dev-feature/postgres http://www.phundament.com/

12factor Application Template for Yii 2.0 Framework

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework template boilerplate yii2 app application docker dotenv docker-compose phundament 12factor

22/01 2016

dev-feature/scrutinizer

dev-feature/scrutinizer http://www.phundament.com/

12factor Application Template for Yii 2.0 Framework

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework template boilerplate yii2 app application docker dotenv docker-compose phundament 12factor

08/01 2016

4.0.2

4.0.2.0 http://www.phundament.com/

12factor Application Template for Yii 2.0 Framework

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework template boilerplate yii2 app application docker dotenv docker-compose phundament 12factor

07/01 2016

4.0.1

4.0.1.0 http://www.phundament.com/

12factor Application Template for Yii 2.0 Framework

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework template boilerplate yii2 app application docker dotenv docker-compose phundament 12factor

05/01 2016

4.0.0

4.0.0.0 http://www.phundament.com/

12factor Application Template for Yii 2.0 Framework

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework template boilerplate yii2 app application docker dotenv docker-compose phundament 12factor

05/01 2016

4.0.0-rc16

4.0.0.0-RC16 http://www.phundament.com/

12factor Application Template for Yii 2.0 Framework

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework template boilerplate yii2 app application docker dotenv docker-compose phundament 12factor

29/12 2015

4.0.0-rc15

4.0.0.0-RC15 http://www.phundament.com/

12factor Application Template for Yii 2.0 Framework

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework template boilerplate yii2 app application docker dotenv docker-compose phundament 12factor

29/12 2015

4.0.0-rc14

4.0.0.0-RC14 http://www.phundament.com/

12factor Application Template for Yii 2.0 Framework

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework template boilerplate yii2 app application docker dotenv docker-compose phundament 12factor

23/12 2015

4.0.0-rc13

4.0.0.0-RC13 http://www.phundament.com/

12factor Application Template for Yii 2.0 Framework

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework template boilerplate yii2 app application docker dotenv docker-compose phundament 12factor

22/12 2015

4.0.0-rc12

4.0.0.0-RC12 http://www.phundament.com/

12factor Application Template for Yii 2.0 Framework

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework template boilerplate yii2 app application docker dotenv docker-compose phundament 12factor

21/12 2015

4.0.0-rc11

4.0.0.0-RC11 http://www.phundament.com/

12factor Application Template for Yii 2.0 Framework

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework template boilerplate yii2 app application docker dotenv docker-compose phundament 12factor

21/12 2015

4.0.0-rc10

4.0.0.0-RC10 http://www.phundament.com/

12factor Application Template for Yii 2.0 Framework

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework template boilerplate yii2 app application docker dotenv docker-compose phundament 12factor

05/12 2015

4.0.0-rc9

4.0.0.0-RC9 http://www.phundament.com/

12factor Application Template for Yii 2.0 Framework

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework template boilerplate yii2 app application docker dotenv docker-compose phundament 12factor

25/10 2015

4.0.0-rc8

4.0.0.0-RC8 http://www.phundament.com/

12factor Application Template for Yii 2.0 Framework

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework template boilerplate yii2 app application docker dotenv vagrant docker-compose phundament 12factor

24/09 2015

4.0.0-rc7

4.0.0.0-RC7 http://www.phundament.com/

12factor Application Template for Yii 2.0 Framework

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework template boilerplate yii2 app application docker dotenv vagrant docker-compose phundament 12factor

16/06 2015

4.0.0-rc1

4.0.0.0-RC1 http://www.phundament.com/

12factor Application Template for Yii 2.0 Framework

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework template boilerplate yii2 app application docker dotenv vagrant docker-compose phundament 12factor

18/11 2014

3.0.x-dev

3.0.9999999.9999999-dev http://phundament.com/

Yii Framework Application Boilerplate, with packages from composer repository http://packages.phundament.com

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

template boilerplate yii foundation application web

21/03 2014

3.0.24

3.0.24.0 http://phundament.com/

Yii Framework Application Boilerplate, with packages from composer repository http://packages.phundament.com

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

template boilerplate yii foundation application web

21/03 2014

3.0.23

3.0.23.0 http://phundament.com/

Yii Framework Application Boilerplate, with packages from composer repository http://packages.phundament.com

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

template boilerplate yii foundation application web

21/11 2013

0.22.0

0.22.0.0 http://phundament.com/

Yii Framework Application Boilerplate, with packages from composer repository http://packages.phundament.com

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

template boilerplate yii foundation application web

15/08 2013

0.21.0

0.21.0.0 http://phundament.com/

Yii Framework Application Boilerplate, with packages from composer repository http://packages.phundament.com

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

template boilerplate yii foundation application web

21/05 2013

0.20.6

0.20.6.0 http://phundament.com/

Yii Application Boilerplate, with packages from composer repository http://packages.phundament.com

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

template boilerplate yii foundation application web

21/05 2013

0.20.5

0.20.5.0 http://phundament.com/

Yii Application Boilerplate, with packages from composer repository http://packages.phundament.com

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

template boilerplate yii foundation application web

20/05 2013

0.20.4

0.20.4.0 http://phundament.com/

Yii Application Boilerplate, with packages from composer repository http://packages.phundament.com

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

template boilerplate yii foundation application web

16/05 2013

0.20.3

0.20.3.0 http://phundament.com/

Yii Application Boilerplate, with packages from composer repository http://packages.phundament.com

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

template boilerplate yii foundation application web

14/05 2013

0.20.2

0.20.2.0 http://phundament.com/

Yii Application Boilerplate, with packages from composer repository http://packages.phundament.com

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

template boilerplate yii foundation application web

13/05 2013

0.20.1

0.20.1.0 http://phundament.com/

Yii Application Boilerplate, with packages from composer repository http://packages.phundament.com

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

template boilerplate yii foundation application web

12/05 2013

0.20.0

0.20.0.0 http://phundament.com/

Yii Application Boilerplate, with packages from composer repository http://packages.phundament.com

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

template boilerplate yii foundation application web

07/05 2013

0.19.1

0.19.1.0 http://phundament.com/

Yii Application Boilerplate, with packages from composer repository http://packages.phundament.com

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

template boilerplate yii foundation application web

07/05 2013

0.19.0

0.19.0.0 http://phundament.com/

Yii Application Boilerplate, with packages from composer repository http://packages.phundament.com

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

template boilerplate yii foundation application web

10/04 2013

0.18.1

0.18.1.0 http://phundament.com/

Yii Application Boilerplate, with packages from composer repository http://packages.phundament.com

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

template boilerplate yii foundation application web

10/04 2013

0.18.0

0.18.0.0 http://phundament.com/

Yii Application Boilerplate, with packages from composer repository http://packages.phundament.com

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

template boilerplate yii foundation application web

05/04 2013

0.17.1

0.17.1.0 http://phundament.com/

Yii Application Boilerplate, with packages from composer repository http://packages.phundament.com

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

template boilerplate yii foundation application web

05/04 2013

0.17.0

0.17.0.0 http://phundament.com/

Yii Application Boilerplate, with packages from composer repository http://packages.phundament.com

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

template boilerplate yii foundation application web

02/04 2013

0.16.0

0.16.0.0 http://phundament.com/

Yii Application Boilerplate, with packages from composer repository http://packages.phundament.com

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

template boilerplate yii foundation application web

28/03 2013

0.15.1

0.15.1.0 http://phundament.com/

Yii Application Boilerplate, with packages from composer repository http://packages.phundament.com

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

template boilerplate yii foundation application web

25/03 2013

0.15.0

0.15.0.0 http://phundament.com/

Yii Application Boilerplate, with packages from composer repository http://packages.phundament.com

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

template boilerplate yii foundation application web

22/03 2013

0.14.2

0.14.2.0 http://phundament.com/

Yii Application Boilerplate, with packages from composer repository http://packages.phundament.com

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

template boilerplate yii foundation application web

21/03 2013

0.14.1

0.14.1.0 http://phundament.com/

Yii Application Boilerplate, with packages from composer repository http://packages.phundament.com

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

template boilerplate yii foundation application web

21/03 2013

0.14.0

0.14.0.0 http://phundament.com/

Yii Application Boilerplate, with packages from composer repository http://packages.phundament.com

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

template boilerplate yii foundation application web

21/03 2013

0.13.0

0.13.0.0 http://phundament.com/

Yii Application Boilerplate, with packages from composer repository http://packages.phundament.com

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

template boilerplate yii foundation application web

12/03 2013

0.12.5

0.12.5.0 http://phundament.com/

Yii Application Boilerplate, with packages from composer repository http://packages.phundament.com

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

template boilerplate yii foundation application web

10/03 2013

0.12.4

0.12.4.0 http://phundament.com/

Yii Application Boilerplate, with packages from composer repository http://packages.phundament.com

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

template boilerplate yii foundation application web

02/03 2013

0.12.3

0.12.3.0 http://phundament.com/

Yii Application Boilerplate, with packages from composer repository http://packages.phundament.com

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

template boilerplate yii foundation application web

01/03 2013

0.12.2

0.12.2.0 http://phundament.com/

Yii Application Boilerplate, with packages from composer repository http://packages.phundament.com

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

template boilerplate yii foundation application web

28/02 2013

0.12.1

0.12.1.0 http://phundament.com/

Yii Application Boilerplate, with packages from composer repository http://packages.phundament.com

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

template boilerplate yii foundation application web

27/02 2013

0.12.0

0.12.0.0 http://phundament.com/

Yii Application Boilerplate, with packages from composer repository http://packages.phundament.com

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

template boilerplate yii foundation application web

04/02 2013

0.11.1

0.11.1.0 http://phundament.com/

Yii Application Foundation, with packages from composer repository: http://packages.phundament.com

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

boilerplate yii application web

01/02 2013

0.11.0

0.11.0.0 http://phundament.com/

Yii Distribution

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

package dependency autoload

13/12 2012

0.10.2

0.10.2.0 http://phundament.com/

Yii Distribution

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

package dependency autoload

11/12 2012

0.10.1

0.10.1.0 http://phundament.com/

Yii Distribution

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

package dependency autoload

10/12 2012

0.10.0

0.10.0.0 http://phundament.com/

Yii Distribution

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

package dependency autoload

30/10 2012

0.9.0

0.9.0.0 http://phundament.com/

Yii Distribution

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

package dependency autoload

13/10 2012

0.8.0

0.8.0.0 http://phundament.com/

Yii Distribution

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

package dependency autoload

27/09 2012

0.7.2

0.7.2.0 http://phundament.com/

Yii Distribution

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

package dependency autoload

21/09 2012

0.7.1

0.7.1.0 http://phundament.com/

Yii Distribution

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

  • phundament/lessii dev-master

package dependency autoload

19/09 2012

0.7.0

0.7.0.0 http://phundament.com/

Yii Distribution

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

  • phundament/lessii dev-master

package dependency autoload

10/09 2012

0.6.1

0.6.1.0 http://phundament.com/

Yii Distribution

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

  • phundament/lessii dev-master

package dependency autoload

07/09 2012

0.6.0

0.6.0.0 http://phundament.com/

Yii Distribution

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

  • phundament/lessii dev-master

package dependency autoload

12/07 2012

0.5.3

0.5.3.0 http://phundament.com/

Yii Distribution

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

  • phundament/lessii dev-master

package dependency autoload

08/07 2012

0.5.2

0.5.2.0 http://phundament.com/

Yii Distribution

  Sources   Download

BSD

The Requires

 

The Development Requires

  • phundament/lessii dev-master

package dependency autoload

06/06 2012

0.5.1

0.5.1.0 http://phundament.com/

Yii Distribution

  Sources   Download

BSD

The Requires

 

The Development Requires

  • phundament/lessii dev-master

package dependency autoload

11/05 2012

0.5.0

0.5.0.0 http://phundament.com/

Yii Distribution

  Sources   Download

BSD

The Requires

 

The Development Requires

  • phundament/lessii dev-master

package dependency autoload