You are viewing revision #3 of this wiki article.
This version may not be up to date with the latest version.
You may want to view the differences to the latest version or see the changes made in this revision.
There are a few settings and plugins that can enhance the development experience with Yii in PHPStorm or IntelliJ IDEA. This article explains how to get the most out of your IDE.
This arcticle is valid for Yii 2 and above, there is an older article for Yii 1.1.
Plugins ¶
Yii2 Support adds many useful tools that improve working with Yii. It makes working with class configuration, DI and views easier.
Yii2 Inspections is a very useful plugin that adds Yii specific code inspections to PHPStorm. It helps for example to manage
@property
annotations for getters and setters as well as translation messages.Php Inspections (EA Extended) is not directly Yii related but has a lot of additional code inspections that help you write better code. There is also a payed version that has even more features, especially security related inspections.
Project Setup ¶
Exclude runtime directories from code search. Debug toolbar stores a lot of stuff that clutters search results.
runtime
- right click - Mark Directory As - ExcludedEnable composer integration to tell PHPStorm to separate vendor files from project files.
composer.json
- right click - Composer - Init Composer ...
I get an error when I run with this setup that the system cannot find autoload.php.
If I set the binary to vendor/codeception/base/codecept it runs.
If you have any questions, please ask in the forum instead.
Signup or Login in order to comment.