├── tests ├── _data │ └── .gitkeep ├── _output │ └── .gitignore ├── acceptance │ ├── _bootstrap.php │ ├── AboutCest.php │ ├── HomeCest.php │ ├── LoginCest.php │ └── ContactCest.php ├── functional │ ├── _bootstrap.php │ ├── LoginFormCest.php │ └── ContactFormCest.php ├── unit │ ├── _bootstrap.php │ └── models │ │ ├── UserTest.php │ │ ├── LoginFormTest.php │ │ └── ContactFormTest.php ├── _bootstrap.php ├── unit.suite.yml ├── acceptance.suite.yml.example ├── functional.suite.yml ├── bin │ ├── yii.bat │ └── yii └── _support │ ├── FunctionalTester.php │ ├── UnitTester.php │ └── AcceptanceTester.php ├── views ├── assets │ ├── sass │ │ └── app.scss │ └── js │ │ ├── components │ │ ├── CardComponent.vue │ │ └── JumbotronComponent.vue │ │ ├── plugins │ │ └── vue-particles.js │ │ └── app.js ├── site │ ├── about.php │ ├── error.php │ ├── login.php │ ├── index.php │ └── contact.php └── layouts │ └── main.php ├── runtime └── .gitignore ├── web ├── assets │ └── .gitignore ├── js │ └── .gitignore ├── robots.txt ├── favicon.ico ├── img │ ├── vue.png │ └── yii.png ├── .htaccess ├── index.php ├── index-test.php └── css │ └── site.css ├── .bowerrc ├── vagrant ├── config │ ├── .gitignore │ └── vagrant-local.example.yml ├── nginx │ ├── log │ │ └── .gitignore │ └── app.conf └── provision │ ├── always-as-root.sh │ ├── once-as-vagrant.sh │ └── once-as-root.sh ├── config ├── params.php ├── test_db.php ├── db.php ├── test.php ├── console.php └── web.php ├── docker-compose.yml ├── yii.bat ├── yii ├── .gitignore ├── assets └── AppAsset.php ├── mail └── layouts │ └── html.php ├── package.json ├── codeception.yml ├── commands └── HelloController.php ├── webpack.config.js ├── LICENSE.md ├── controllers └── SiteController.php ├── README.md ├── models ├── ContactForm.php ├── LoginForm.php └── User.php ├── composer.json ├── widgets └── Alert.php ├── Vagrantfile └── requirements.php /tests/_data/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /views/assets/sass/app.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /tests/_output/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /tests/acceptance/_bootstrap.php: -------------------------------------------------------------------------------- 1 | 2 |
14 | This is the About page. You may modify the following file to customize its content: 15 |
16 | 17 |= __FILE__ ?>
18 | 21 | The above error occurred while the Web server was processing your request. 22 |
23 |24 | Please contact us if you think this is a server error. Thank you. 25 |
26 | 27 |
+
5 |
6 | 7 | You have successfully created your Yii-powered application. 8 |
9 |10 | Get started with Yii 13 |
14 |