Debug Extension for Yii 2 ¶
This extension provides a debugger for Yii framework 2.0 applications. When this extension is used, a debugger toolbar will appear at the bottom of every page. The extension also provides a set of standalone pages to display more detailed debug information.
For license information check the LICENSE-file.
Documentation is at docs/guide/README.md.
Installation ¶
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist yiisoft/yii2-debug
or add
"yiisoft/yii2-debug": "~2.0.0"
to the require section of your composer.json file.
Usage ¶
Once the extension is installed, simply modify your application configuration as follows:
return [
'bootstrap' => ['debug'],
'modules' => [
'debug' => [
'class' => 'yii\debug\Module',
// uncomment and adjust the following to add your IP if you are not connecting from localhost.
//'allowedIPs' => ['127.0.0.1', '::1'],
],
// ...
],
...
];
You will see a debugger toolbar showing at the bottom of every page of your application. You can click on the toolbar to see more detailed debug information.
Open Files in IDE ¶
You can create a link to open files in your favorite IDE with this configuration:
return [
'bootstrap' => ['debug'],
'modules' => [
'debug' => [
'class' => 'yii\debug\Module',
'traceLine' => '<a href="phpstorm://open?url={file}&line={line}">{file}:{line}</a>',
// uncomment and adjust the following to add your IP if you are not connecting from localhost.
//'allowedIPs' => ['127.0.0.1', '::1'],
],
// ...
],
...
];
You must make some changes to your OS, see this example: https://github.com/aik099/PhpStormProtocol
Class Reference
| Class | Description |
|---|---|
| yii\debug\DebugAsset | Debugger asset bundle |
| yii\debug\LogTarget | The debug LogTarget is used to store logs for later use in the debugger tool |
| yii\debug\Module | The Yii Debug Module provides the debug toolbar and debugger |
| yii\debug\Panel | Panel is a base class for debugger panel classes. It defines how data should be collected, what should be displayed at debug toolbar and on debugger details view. |
| yii\debug\TimelineAsset | Timeline asset bundle |
| yii\debug\UserswitchAsset | Userswitch asset bundle |
| yii\debug\actions\db\ExplainAction | ExplainAction provides EXPLAIN information for SQL queries |
| yii\debug\components\search\Filter | Provides array filtering capabilities. |
| yii\debug\components\search\matchers\Base | Base class for matchers that are used in a filter. |
| yii\debug\components\search\matchers\GreaterThan | Checks if the given value is greater than the base one. |
| yii\debug\components\search\matchers\GreaterThanOrEqual | Checks if the given value is greater than or equal the base one. |
| yii\debug\components\search\matchers\LowerThan | Checks if the given value is lower than the base one. |
| yii\debug\components\search\matchers\MatcherInterface | MatcherInterface should be implemented by all matchers that are used in a filter. |
| yii\debug\components\search\matchers\SameAs | Checks if the given value is exactly or partially same as the base one. |
| yii\debug\controllers\DefaultController | Debugger controller |
| yii\debug\controllers\UserController | User controller |
| yii\debug\models\Router | Router model |
| yii\debug\models\UserSwitch | UserSwitch is a model used to temporary logging in another user |
| yii\debug\models\search\Base | Base search model |
| yii\debug\models\search\Db | Search model for current request database queries. |
| yii\debug\models\search\Debug | Search model for requests manifest data. |
| yii\debug\models\search\Log | Search model for current request log. |
| yii\debug\models\search\Mail | Mail represents the model behind the search form about current send emails. |
| yii\debug\models\search\Profile | Search model for current request profiling log. |
| yii\debug\models\search\User | Search model for implementation of IdentityInterface |
| yii\debug\models\search\UserSearchInterface | UserSearchInterface is the interface that should be implemented by a class providing identity information and search method. |
| yii\debug\models\timeline\DataProvider | DataProvider implements a data provider based on a data array. |
| yii\debug\models\timeline\Search | Search model for timeline data. |
| yii\debug\models\timeline\Svg | Svg is used to draw a graph using SVG |
| yii\debug\panels\AssetPanel | Debugger panel that collects and displays asset bundles data. |
| yii\debug\panels\ConfigPanel | Debugger panel that collects and displays application configuration and environment. |
| yii\debug\panels\DbPanel | Debugger panel that collects and displays database queries performed. |
| yii\debug\panels\LogPanel | Debugger panel that collects and displays logs. |
| yii\debug\panels\MailPanel | Debugger panel that collects and displays the generated emails. |
| yii\debug\panels\ProfilingPanel | Debugger panel that collects and displays performance profiling info. |
| yii\debug\panels\RequestPanel | Debugger panel that collects and displays request data. |
| yii\debug\panels\RouterPanel | RouterPanel provides a panel which displays information about routing process. |
| yii\debug\panels\TimelinePanel | Debugger panel that collects and displays timeline data. |
| yii\debug\panels\UserPanel | Debugger panel that collects and displays user data. |

