keun 1737537122 Mettre en place une map sur la page d'accueil pour présenter les boulangeries partenaires. | преди 8 години | |
---|---|---|
.. | ||
actions/db | преди 8 години | |
assets | преди 8 години | |
components/search | преди 8 години | |
controllers | преди 8 години | |
models/search | преди 8 години | |
panels | преди 8 години | |
views | преди 8 години | |
CHANGELOG.md | преди 8 години | |
DebugAsset.php | преди 8 години | |
LogTarget.php | преди 8 години | |
Module.php | преди 8 години | |
Panel.php | преди 8 години | |
README.md | преди 8 години | |
composer.json | преди 8 години |
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.
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.
Once the extension is installed, simply modify your application configuration as follows:
return [
'bootstrap' => ['debug'],
'modules' => [
'debug' => [
'class' => 'yii\debug\Module',
],
// ...
],
...
];
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.