├── .gitignore ├── README.md ├── Vagrantfile ├── puppet ├── manifests │ └── init.pp └── modules │ ├── apache │ ├── manifests │ │ ├── init.pp │ │ ├── install.pp │ │ └── service.pp │ └── templates │ │ └── yii2.vhost │ ├── git │ └── manifests │ │ └── init.pp │ ├── mailcatcher │ └── manifests │ │ └── init.pp │ ├── mysql │ ├── manifests │ │ ├── init.pp │ │ ├── install.pp │ │ └── service.pp │ └── templates │ │ └── .my.cnf │ ├── php │ ├── files │ │ ├── apache │ │ │ └── php.ini │ │ ├── cli │ │ │ └── php.ini │ │ └── xdebug.ini │ └── manifests │ │ └── init.pp │ ├── server │ ├── files │ │ ├── .screenrc │ │ └── dotdeb.list │ └── manifests │ │ └── init.pp │ └── tools │ └── manifests │ ├── composer.pp │ ├── init.pp │ └── phpunit.pp ├── ubuntu.sh └── www ├── .gitignore ├── LICENSE.md ├── README.md ├── backend ├── assets │ └── AppAsset.php ├── codeception.yml ├── config │ ├── .gitignore │ ├── main.php │ └── params.php ├── controllers │ └── SiteController.php ├── models │ └── .gitkeep ├── runtime │ └── .gitignore ├── tests │ ├── _bootstrap.php │ ├── _config.php │ ├── _console.php │ ├── _data │ │ └── dump.sql │ ├── _helpers │ │ ├── CodeHelper.php │ │ ├── TestHelper.php │ │ └── WebHelper.php │ ├── _log │ │ └── .gitignore │ ├── acceptance.suite.yml │ ├── acceptance │ │ ├── LoginCept.php │ │ ├── _bootstrap.php │ │ ├── _config.php │ │ ├── _console.php │ │ ├── yii │ │ └── yii.bat │ ├── functional.suite.yml │ ├── functional │ │ ├── LoginCept.php │ │ ├── _bootstrap.php │ │ ├── _config.php │ │ ├── _console.php │ │ ├── yii │ │ └── yii.bat │ ├── unit.suite.yml │ └── unit │ │ ├── DbTestCase.php │ │ ├── TestCase.php │ │ ├── _bootstrap.php │ │ ├── _config.php │ │ ├── _console.php │ │ ├── yii │ │ └── yii.bat ├── views │ ├── layouts │ │ └── main.php │ └── site │ │ ├── error.php │ │ ├── index.php │ │ └── login.php └── web │ ├── .gitignore │ ├── .htaccess │ ├── assets │ └── .gitignore │ ├── css │ └── site.css │ ├── favicon.ico │ ├── index-test.php │ ├── index.php │ └── robots.txt ├── common ├── codeception.yml ├── config │ ├── .gitignore │ ├── aliases.php │ ├── main.php │ └── params.php ├── mail │ ├── layouts │ │ └── html.php │ └── passwordResetToken.php ├── models │ ├── LoginForm.php │ └── User.php └── tests │ ├── _bootstrap.php │ ├── _config.php │ ├── _console.php │ ├── _data │ └── dump.sql │ ├── _helpers │ ├── CodeHelper.php │ ├── FixtureHelper.php │ ├── TestHelper.php │ └── WebHelper.php │ ├── _log │ └── .gitignore │ ├── _pages │ └── LoginPage.php │ ├── fixtures │ ├── UserFixture.php │ └── data │ │ └── init_login.php │ ├── templates │ └── fixtures │ │ └── tbl_user.php │ ├── unit.suite.yml │ └── unit │ ├── DbTestCase.php │ ├── TestCase.php │ ├── _bootstrap.php │ ├── _config.php │ ├── _console.php │ ├── models │ └── LoginFormTest.php │ ├── yii │ └── yii.bat ├── composer.json ├── composer.lock ├── console ├── codeception.yml ├── config │ ├── .gitignore │ ├── main.php │ └── params.php ├── controllers │ └── .gitkeep ├── migrations │ └── m130524_201442_init.php ├── models │ └── .gitkeep ├── runtime │ └── .gitignore └── tests │ ├── _bootstrap.php │ ├── _config.php │ ├── _console.php │ ├── _data │ └── dump.sql │ ├── _helpers │ ├── CodeHelper.php │ ├── TestHelper.php │ └── WebHelper.php │ ├── _log │ └── .gitignore │ ├── unit.suite.yml │ └── unit │ ├── DbTestCase.php │ ├── TestCase.php │ ├── _bootstrap.php │ ├── _config.php │ ├── _console.php │ ├── yii │ └── yii.bat ├── environments ├── dev │ ├── backend │ │ ├── config │ │ │ ├── main-local.php │ │ │ └── params-local.php │ │ └── web │ │ │ ├── index-test.php │ │ │ └── index.php │ ├── common │ │ └── config │ │ │ ├── main-local.php │ │ │ └── params-local.php │ ├── console │ │ └── config │ │ │ ├── main-local.php │ │ │ └── params-local.php │ ├── frontend │ │ ├── config │ │ │ ├── main-local.php │ │ │ └── params-local.php │ │ └── web │ │ │ ├── index-test.php │ │ │ └── index.php │ └── yii ├── index.php └── prod │ ├── backend │ ├── config │ │ ├── main-local.php │ │ └── params-local.php │ └── web │ │ └── index.php │ ├── common │ └── config │ │ ├── main-local.php │ │ └── params-local.php │ ├── console │ └── config │ │ ├── main-local.php │ │ └── params-local.php │ ├── frontend │ ├── config │ │ ├── main-local.php │ │ └── params-local.php │ └── web │ │ └── index.php │ └── yii ├── frontend ├── assets │ └── AppAsset.php ├── codeception.yml ├── config │ ├── .gitignore │ ├── main.php │ └── params.php ├── controllers │ └── SiteController.php ├── models │ ├── ContactForm.php │ ├── PasswordResetRequestForm.php │ ├── ResetPasswordForm.php │ └── SignupForm.php ├── runtime │ └── .gitignore ├── tests │ ├── _bootstrap.php │ ├── _config.php │ ├── _console.php │ ├── _data │ │ └── dump.sql │ ├── _helpers │ │ ├── CodeHelper.php │ │ ├── TestHelper.php │ │ └── WebHelper.php │ ├── _log │ │ └── .gitignore │ ├── _pages │ │ ├── AboutPage.php │ │ ├── ContactPage.php │ │ └── SignupPage.php │ ├── acceptance.suite.yml │ ├── acceptance │ │ ├── AboutCept.php │ │ ├── ContactCept.php │ │ ├── HomeCept.php │ │ ├── LoginCept.php │ │ ├── SignupCest.php │ │ ├── _bootstrap.php │ │ ├── _config.php │ │ ├── _console.php │ │ ├── yii │ │ └── yii.bat │ ├── functional.suite.yml │ ├── functional │ │ ├── AboutCept.php │ │ ├── ContactCept.php │ │ ├── HomeCept.php │ │ ├── LoginCept.php │ │ ├── SignupCest.php │ │ ├── _bootstrap.php │ │ ├── _config.php │ │ ├── _console.php │ │ ├── yii │ │ └── yii.bat │ ├── unit.suite.yml │ └── unit │ │ ├── DbTestCase.php │ │ ├── TestCase.php │ │ ├── _bootstrap.php │ │ ├── _config.php │ │ ├── _console.php │ │ ├── fixtures │ │ └── data │ │ │ └── tbl_user.php │ │ ├── models │ │ ├── ContactFormTest.php │ │ ├── PasswordResetRequestFormTest.php │ │ ├── ResetPasswordFormTest.php │ │ └── SignupFormTest.php │ │ ├── yii │ │ └── yii.bat ├── views │ ├── layouts │ │ └── main.php │ └── site │ │ ├── about.php │ │ ├── contact.php │ │ ├── error.php │ │ ├── index.php │ │ ├── login.php │ │ ├── requestPasswordResetToken.php │ │ ├── resetPassword.php │ │ └── signup.php ├── web │ ├── .gitignore │ ├── .htaccess │ ├── assets │ │ └── .gitignore │ ├── backend │ ├── css │ │ └── site.css │ ├── favicon.ico │ ├── index-test.php │ ├── index.php │ └── robots.txt └── widgets │ └── Alert.php ├── init ├── init.bat ├── requirements.php ├── yii └── yii.bat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorncom/yii2-advanced-with-vagrant/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorncom/yii2-advanced-with-vagrant/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorncom/yii2-advanced-with-vagrant/HEAD/Vagrantfile -------------------------------------------------------------------------------- /puppet/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorncom/yii2-advanced-with-vagrant/HEAD/puppet/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorncom/yii2-advanced-with-vagrant/HEAD/puppet/modules/apache/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorncom/yii2-advanced-with-vagrant/HEAD/puppet/modules/apache/manifests/install.pp -------------------------------------------------------------------------------- /puppet/modules/apache/manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorncom/yii2-advanced-with-vagrant/HEAD/puppet/modules/apache/manifests/service.pp -------------------------------------------------------------------------------- /puppet/modules/apache/templates/yii2.vhost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorncom/yii2-advanced-with-vagrant/HEAD/puppet/modules/apache/templates/yii2.vhost -------------------------------------------------------------------------------- /puppet/modules/git/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorncom/yii2-advanced-with-vagrant/HEAD/puppet/modules/git/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/mailcatcher/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorncom/yii2-advanced-with-vagrant/HEAD/puppet/modules/mailcatcher/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/mysql/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorncom/yii2-advanced-with-vagrant/HEAD/puppet/modules/mysql/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/mysql/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorncom/yii2-advanced-with-vagrant/HEAD/puppet/modules/mysql/manifests/install.pp -------------------------------------------------------------------------------- /puppet/modules/mysql/manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorncom/yii2-advanced-with-vagrant/HEAD/puppet/modules/mysql/manifests/service.pp -------------------------------------------------------------------------------- /puppet/modules/mysql/templates/.my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorncom/yii2-advanced-with-vagrant/HEAD/puppet/modules/mysql/templates/.my.cnf -------------------------------------------------------------------------------- /puppet/modules/php/files/apache/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorncom/yii2-advanced-with-vagrant/HEAD/puppet/modules/php/files/apache/php.ini -------------------------------------------------------------------------------- /puppet/modules/php/files/cli/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorncom/yii2-advanced-with-vagrant/HEAD/puppet/modules/php/files/cli/php.ini -------------------------------------------------------------------------------- /puppet/modules/php/files/xdebug.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorncom/yii2-advanced-with-vagrant/HEAD/puppet/modules/php/files/xdebug.ini -------------------------------------------------------------------------------- /puppet/modules/php/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorncom/yii2-advanced-with-vagrant/HEAD/puppet/modules/php/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/server/files/.screenrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorncom/yii2-advanced-with-vagrant/HEAD/puppet/modules/server/files/.screenrc -------------------------------------------------------------------------------- /puppet/modules/server/files/dotdeb.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorncom/yii2-advanced-with-vagrant/HEAD/puppet/modules/server/files/dotdeb.list -------------------------------------------------------------------------------- /puppet/modules/server/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorncom/yii2-advanced-with-vagrant/HEAD/puppet/modules/server/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/tools/manifests/composer.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorncom/yii2-advanced-with-vagrant/HEAD/puppet/modules/tools/manifests/composer.pp -------------------------------------------------------------------------------- /puppet/modules/tools/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorncom/yii2-advanced-with-vagrant/HEAD/puppet/modules/tools/manifests/init.pp -------------------------------------------------------------------------------- /puppet/modules/tools/manifests/phpunit.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorncom/yii2-advanced-with-vagrant/HEAD/puppet/modules/tools/manifests/phpunit.pp -------------------------------------------------------------------------------- /ubuntu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorncom/yii2-advanced-with-vagrant/HEAD/ubuntu.sh -------------------------------------------------------------------------------- /www/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | 3 | 4 | */config/*-local.php 5 | -------------------------------------------------------------------------------- /www/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorncom/yii2-advanced-with-vagrant/HEAD/www/LICENSE.md -------------------------------------------------------------------------------- /www/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorncom/yii2-advanced-with-vagrant/HEAD/www/README.md -------------------------------------------------------------------------------- /www/backend/assets/AppAsset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorncom/yii2-advanced-with-vagrant/HEAD/www/backend/assets/AppAsset.php -------------------------------------------------------------------------------- /www/backend/codeception.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorncom/yii2-advanced-with-vagrant/HEAD/www/backend/codeception.yml -------------------------------------------------------------------------------- /www/backend/config/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorncom/yii2-advanced-with-vagrant/HEAD/www/backend/config/.gitignore -------------------------------------------------------------------------------- /www/backend/config/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorncom/yii2-advanced-with-vagrant/HEAD/www/backend/config/main.php -------------------------------------------------------------------------------- /www/backend/config/params.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorncom/yii2-advanced-with-vagrant/HEAD/www/backend/config/params.php -------------------------------------------------------------------------------- /www/backend/controllers/SiteController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorncom/yii2-advanced-with-vagrant/HEAD/www/backend/controllers/SiteController.php -------------------------------------------------------------------------------- /www/backend/models/.gitkeep: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /www/backend/runtime/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /www/backend/tests/_bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorncom/yii2-advanced-with-vagrant/HEAD/www/backend/tests/_bootstrap.php -------------------------------------------------------------------------------- /www/backend/tests/_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorncom/yii2-advanced-with-vagrant/HEAD/www/backend/tests/_config.php -------------------------------------------------------------------------------- /www/backend/tests/_console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorncom/yii2-advanced-with-vagrant/HEAD/www/backend/tests/_console.php -------------------------------------------------------------------------------- /www/backend/tests/_data/dump.sql: -------------------------------------------------------------------------------- 1 | /* Replace this file with actual dump of your database */ -------------------------------------------------------------------------------- /www/backend/tests/_helpers/CodeHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorncom/yii2-advanced-with-vagrant/HEAD/www/backend/tests/_helpers/CodeHelper.php -------------------------------------------------------------------------------- /www/backend/tests/_helpers/TestHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorncom/yii2-advanced-with-vagrant/HEAD/www/backend/tests/_helpers/TestHelper.php -------------------------------------------------------------------------------- /www/backend/tests/_helpers/WebHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorncom/yii2-advanced-with-vagrant/HEAD/www/backend/tests/_helpers/WebHelper.php -------------------------------------------------------------------------------- /www/backend/tests/_log/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /www/backend/tests/acceptance.suite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorncom/yii2-advanced-with-vagrant/HEAD/www/backend/tests/acceptance.suite.yml -------------------------------------------------------------------------------- /www/backend/tests/acceptance/LoginCept.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acorncom/yii2-advanced-with-vagrant/HEAD/www/backend/tests/acceptance/LoginCept.php -------------------------------------------------------------------------------- /www/backend/tests/acceptance/_bootstrap.php: -------------------------------------------------------------------------------- 1 |