yii2 slack log
v2.0.1
Jolie cible de journal Slack pour Yii 2.
La méthode préférée pour installer cette extension est via composer.
Soit courir
composer require " sergeymakinen/yii2-slack-log:^2.0 "
ou ajouter
"sergeymakinen/yii2-slack-log" : " ^2.0 "
à la section require de votre fichier composer.json
.
Configurez d’abord une intégration de webhook entrant dans votre équipe Slack et obtenez un jeton. Cela devrait ressembler à https://hooks.slack.com/services/T00000000/B00000000/XXXXXXXXXXXXXXXXXXXXXXXX
.
Définissez ensuite les paramètres de configuration Yii 2 suivants :
' components ' => [
' log ' => [
' targets ' => [
[
' class ' => ' sergeymakinenyiislacklogTarget ' ,
' webhookUrl ' => ' https://hooks.slack.com/services/T00000000/B00000000/XXXXXXXXXXXXXXXXXXXXXXXX ' ,
],
],
],
],
Exemple de configuration :
' components ' => [
' log ' => [
' targets ' => [
[
' class ' => ' sergeymakinenyiislacklogTarget ' ,
' levels ' => [ ' error ' ],
' except ' => [
' yiiwebHttpException:* ' ,
],
' enabled ' => YII_ENV_PROD ,
' webhookUrl ' => ' https://hooks.slack.com/services/T00000000/B00000000/XXXXXXXXXXXXXXXXXXXXXXXX ' ,
' username ' => ' Fire Alarm Bot ' ,
' iconEmoji ' => ' :poop: ' ,
],
],
],
],