Yii3 - How to start

Comparing #46 with #47

Revision #47 was created by rackycz rackycz on Apr 5, 2026, 9:41:17 AM.

git

Content

[...]
In Yii3 it is not as easy to start as it was with Yii2. You have to install and configure basic things on your own. Yii3 uses the modern approach based on independent packages and dependency injection, but it makes it harder for newcomers. I am here to show all how I did it.

## Git

All my code is available in my GitHub repositories:
- [Yii3 API demo](https://github.com/rackycz/yii3api) (
yii3api) - May be dropped in the future as `yii3web` offers more) - [Yii3 WEB demo](https://github.com/rackycz/yii3web) (yii3web) - I think I will use this one more)

I will be using it as a boiler-plate for my future projects so it should be always up-to-date and working.

## Docker
[...]