keun 1737537122 Mettre en place une map sur la page d'accueil pour présenter les boulangeries partenaires. | 8 lat temu | |
---|---|---|
.. | ||
actions/db | 8 lat temu | |
assets | 8 lat temu | |
components/search | 8 lat temu | |
controllers | 8 lat temu | |
models/search | 8 lat temu | |
panels | 8 lat temu | |
views | 8 lat temu | |
CHANGELOG.md | 8 lat temu | |
DebugAsset.php | 8 lat temu | |
LogTarget.php | 8 lat temu | |
Module.php | 8 lat temu | |
Panel.php | 8 lat temu | |
README.md | 8 lat temu | |
composer.json | 8 lat temu |
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.