rainerch / yii2-eventhook
There is no license information available for the latest version (1.2.2) of this package.
Forward yii2 events to different targets
1.2.2
2021-03-24 06:52 UTC
Requires
- php: >=7.0
- bluerhinos/phpmqtt: ^1.0
- yiisoft/yii2: ~2.0
This package is auto-updated.
Last update: 2025-03-24 15:34:18 UTC
README
Forward yii2 events to different targets (Web, MQTT ...)
How to use
In your config.php:
<?php
$config = [
'bootstrap' = ['webhook'],
'components' = [
'webhook' => [
'class' => 'rainerch\eventhook\HttpPost',
'events' => [
[['\yii\db\ActiveRecord'], ['afterInsert', 'afterUpdate'], [
'url' => 'https://example.com/myAwesomeWebhook'
]],
['app\MyModel', 'afterInsert', [
'url' => 'https://example.com/MyAwesomeModelWebhook'
]],
function($sender) {
// use closure as filter, return true if you want to send the webhook
}
]
],
]
]