├── .bowerrc ├── .dockerignore ├── .editorconfig ├── .env.example ├── .env.test ├── .gitignore ├── .php_cs ├── CHANGELOG.md ├── Dockerfile ├── LICENSE.md ├── README.md ├── app ├── assets │ └── AppAsset.php ├── commands │ └── PostInstallController.php ├── components │ └── .gitkeep ├── controllers │ └── SiteController.php ├── migrations │ └── .gitkeep ├── models │ ├── ContactForm.php │ ├── LoginForm.php │ └── User.php ├── views │ ├── layouts │ │ └── main.php │ ├── mail │ │ └── layouts │ │ │ └── html.php │ └── site │ │ ├── about.php │ │ ├── contact.php │ │ ├── error.php │ │ ├── index.php │ │ └── login.php └── widgets │ └── .gitkeep ├── bin └── .gitkeep ├── bootstrap ├── aliases.php ├── autoload.php ├── console.php ├── sidekit-test.php ├── sidekit.php ├── test.php └── web.php ├── codeception.yml ├── composer.json ├── config ├── codeception │ └── app.php ├── console │ ├── app.php │ ├── components │ │ ├── cache.php │ │ ├── db.php │ │ └── log.php │ └── params │ │ └── mail.php ├── env │ ├── console │ │ ├── dev │ │ │ ├── .gitkeep │ │ │ ├── app.php │ │ │ └── modules │ │ │ │ └── gii.php │ │ ├── local │ │ │ └── .gitignore │ │ ├── prod │ │ │ └── .gitkeep │ │ ├── stage │ │ │ └── .gitkeep │ │ └── test │ │ │ └── .gitkeep │ └── web │ │ ├── dev │ │ ├── app.php │ │ ├── components │ │ │ └── urlManager.php │ │ └── modules │ │ │ ├── debug.php │ │ │ └── gii.php │ │ ├── local │ │ └── .gitignore │ │ ├── prod │ │ └── .gitkeep │ │ ├── stage │ │ └── .gitkeep │ │ └── test │ │ └── .gitkeep ├── test │ ├── app.php │ ├── components │ │ ├── assetManager.php │ │ ├── db.php │ │ ├── mailer.php │ │ ├── request.php │ │ ├── urlManager.php │ │ └── user.php │ └── params │ │ └── mail.php └── web │ ├── app.php │ ├── components │ ├── cache.php │ ├── db.php │ ├── errorHandler.php │ ├── log.php │ ├── mailer.php │ ├── request.php │ └── user.php │ ├── modules │ └── .gitkeep │ └── params │ └── mail.php ├── docker-compose.yml ├── gulpfile.js ├── image-files ├── etc │ └── nginx │ │ └── nginx.conf └── root │ └── Procfile ├── public ├── .htaccess ├── assets │ └── .gitignore ├── css │ └── site.css ├── favicon.ico ├── index.php └── robots.txt ├── requirements.php ├── runtime └── .gitignore ├── src └── App │ └── Configuration │ └── ConfigurationBuilder.php ├── tests ├── _bootstrap.php ├── _data │ └── .gitignore ├── _output │ └── .gitignore ├── _support │ ├── AcceptanceTester.php │ ├── FunctionalTester.php │ ├── UnitTester.php │ └── index-test.php ├── acceptance.suite.yml ├── acceptance │ ├── AboutCest.php │ ├── ContactCest.php │ ├── HomeCest.php │ ├── LoginCest.php │ └── _bootstrap.php ├── bin │ ├── yii │ └── yii.bat ├── functional.suite.yml ├── functional │ ├── ContactFormCest.php │ ├── LoginFormCest.php │ └── _bootstrap.php ├── unit.suite.yml └── unit │ ├── SideKitTest.php │ ├── _bootstrap.php │ └── models │ ├── ContactFormTest.php │ ├── LoginFormTest.php │ └── UserTest.php ├── yii └── yii.bat /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "vendor/bower" 3 | } 4 | -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | vendor -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/.env.example -------------------------------------------------------------------------------- /.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/.env.test -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/.php_cs -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/README.md -------------------------------------------------------------------------------- /app/assets/AppAsset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/app/assets/AppAsset.php -------------------------------------------------------------------------------- /app/commands/PostInstallController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/app/commands/PostInstallController.php -------------------------------------------------------------------------------- /app/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/SiteController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/app/controllers/SiteController.php -------------------------------------------------------------------------------- /app/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/ContactForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/app/models/ContactForm.php -------------------------------------------------------------------------------- /app/models/LoginForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/app/models/LoginForm.php -------------------------------------------------------------------------------- /app/models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/app/models/User.php -------------------------------------------------------------------------------- /app/views/layouts/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/app/views/layouts/main.php -------------------------------------------------------------------------------- /app/views/mail/layouts/html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/app/views/mail/layouts/html.php -------------------------------------------------------------------------------- /app/views/site/about.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/app/views/site/about.php -------------------------------------------------------------------------------- /app/views/site/contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/app/views/site/contact.php -------------------------------------------------------------------------------- /app/views/site/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/app/views/site/error.php -------------------------------------------------------------------------------- /app/views/site/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/app/views/site/index.php -------------------------------------------------------------------------------- /app/views/site/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/app/views/site/login.php -------------------------------------------------------------------------------- /app/widgets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootstrap/aliases.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/bootstrap/aliases.php -------------------------------------------------------------------------------- /bootstrap/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/bootstrap/autoload.php -------------------------------------------------------------------------------- /bootstrap/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/bootstrap/console.php -------------------------------------------------------------------------------- /bootstrap/sidekit-test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/bootstrap/sidekit-test.php -------------------------------------------------------------------------------- /bootstrap/sidekit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/bootstrap/sidekit.php -------------------------------------------------------------------------------- /bootstrap/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/bootstrap/test.php -------------------------------------------------------------------------------- /bootstrap/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/bootstrap/web.php -------------------------------------------------------------------------------- /codeception.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/codeception.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/composer.json -------------------------------------------------------------------------------- /config/codeception/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/config/codeception/app.php -------------------------------------------------------------------------------- /config/console/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/config/console/app.php -------------------------------------------------------------------------------- /config/console/components/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/config/console/components/cache.php -------------------------------------------------------------------------------- /config/console/components/db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/config/console/components/db.php -------------------------------------------------------------------------------- /config/console/components/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/config/console/components/log.php -------------------------------------------------------------------------------- /config/console/params/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/config/console/params/mail.php -------------------------------------------------------------------------------- /config/env/console/dev/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/env/console/dev/app.php: -------------------------------------------------------------------------------- 1 | ['log', 'gii'], 5 | ]; 6 | -------------------------------------------------------------------------------- /config/env/console/dev/modules/gii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/config/env/console/dev/modules/gii.php -------------------------------------------------------------------------------- /config/env/console/local/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /config/env/console/prod/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/env/console/stage/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/env/console/test/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/env/web/dev/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/config/env/web/dev/app.php -------------------------------------------------------------------------------- /config/env/web/dev/components/urlManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/config/env/web/dev/components/urlManager.php -------------------------------------------------------------------------------- /config/env/web/dev/modules/debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/config/env/web/dev/modules/debug.php -------------------------------------------------------------------------------- /config/env/web/dev/modules/gii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/config/env/web/dev/modules/gii.php -------------------------------------------------------------------------------- /config/env/web/local/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /config/env/web/prod/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /config/env/web/stage/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/env/web/test/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/test/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/config/test/app.php -------------------------------------------------------------------------------- /config/test/components/assetManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/config/test/components/assetManager.php -------------------------------------------------------------------------------- /config/test/components/db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/config/test/components/db.php -------------------------------------------------------------------------------- /config/test/components/mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/config/test/components/mailer.php -------------------------------------------------------------------------------- /config/test/components/request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/config/test/components/request.php -------------------------------------------------------------------------------- /config/test/components/urlManager.php: -------------------------------------------------------------------------------- 1 | true, 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /config/test/components/user.php: -------------------------------------------------------------------------------- 1 | 'app\models\User', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /config/test/params/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/config/test/params/mail.php -------------------------------------------------------------------------------- /config/web/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/config/web/app.php -------------------------------------------------------------------------------- /config/web/components/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/config/web/components/cache.php -------------------------------------------------------------------------------- /config/web/components/db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/config/web/components/db.php -------------------------------------------------------------------------------- /config/web/components/errorHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/config/web/components/errorHandler.php -------------------------------------------------------------------------------- /config/web/components/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/config/web/components/log.php -------------------------------------------------------------------------------- /config/web/components/mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/config/web/components/mailer.php -------------------------------------------------------------------------------- /config/web/components/request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/config/web/components/request.php -------------------------------------------------------------------------------- /config/web/components/user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/config/web/components/user.php -------------------------------------------------------------------------------- /config/web/modules/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/web/params/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/config/web/params/mail.php -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | -------------------------------------------------------------------------------- /image-files/etc/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/image-files/etc/nginx/nginx.conf -------------------------------------------------------------------------------- /image-files/root/Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/image-files/root/Procfile -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/assets/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /public/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/public/css/site.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/public/index.php -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: -------------------------------------------------------------------------------- /requirements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/requirements.php -------------------------------------------------------------------------------- /runtime/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /src/App/Configuration/ConfigurationBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/src/App/Configuration/ConfigurationBuilder.php -------------------------------------------------------------------------------- /tests/_bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/tests/_bootstrap.php -------------------------------------------------------------------------------- /tests/_data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /tests/_output/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /tests/_support/AcceptanceTester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/tests/_support/AcceptanceTester.php -------------------------------------------------------------------------------- /tests/_support/FunctionalTester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/tests/_support/FunctionalTester.php -------------------------------------------------------------------------------- /tests/_support/UnitTester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/tests/_support/UnitTester.php -------------------------------------------------------------------------------- /tests/_support/index-test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/tests/_support/index-test.php -------------------------------------------------------------------------------- /tests/acceptance.suite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/tests/acceptance.suite.yml -------------------------------------------------------------------------------- /tests/acceptance/AboutCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/tests/acceptance/AboutCest.php -------------------------------------------------------------------------------- /tests/acceptance/ContactCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/tests/acceptance/ContactCest.php -------------------------------------------------------------------------------- /tests/acceptance/HomeCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/tests/acceptance/HomeCest.php -------------------------------------------------------------------------------- /tests/acceptance/LoginCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2amigos/yii2-app-template/HEAD/tests/acceptance/LoginCest.php -------------------------------------------------------------------------------- /tests/acceptance/_bootstrap.php: -------------------------------------------------------------------------------- 1 |