bazilio / yii2-stubs-generator
Yii2 component stubs generator for Yii::$app
Installs: 573 203
Dependents: 1
Suggesters: 1
Security: 0
Stars: 148
Watchers: 14
Forks: 24
Open Issues: 2
Type:yii2-extension
Requires
- yiisoft/yii2: *
README
This extension provides no-more-butthurt components & user identity autocomplete generator command for Yii 2.
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --dev --prefer-dist bazilio/yii2-stubs-generator
or add
"bazilio/yii2-stubs-generator": "~1"
to the require-dev
section of your composer.json
.
Usage
To use this extension, simply add the following code in your application configuration (console.php):
'controllerMap' => [ 'stubs' => [ 'class' => 'bazilio\stubsgenerator\StubsController', ], ],
# generate stubs for console application
php yii stubs console/config/main.php
# to generate stubs for several apps
php yii stubs console/config/main.php common/config/main.php frontend/config/main.php
File with stubs by default located in vendor directory.
Usage with PhpStorm
- Install
File Watchers
JetBrains plugin - Open
File Watchers
plugin config and import watcher.xml - Edit imported watcher for your needs
- Add scope to limit trigger to config files:
PhpStorm "multiple definitions exist for class"
To hide this message:
- Find a duplicate class file (not created by this generator), for example:
vendor/yiisoft/yii/YiiBase.php
- Mark it as a plain text in file context menu.