PHP code example of jerrybendy / coding-webhook-php
1. Go to this page and download the library: Download jerrybendy/coding-webhook-php library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
jerrybendy / coding-webhook-php example snippets
use Jerrybendy\Coding\Webhook;
/*
* 在这里定义你的 token , 可以为空
*/
define('TOKEN', 'hello-world');
$webHook = new Webhook(TOKEN);
$webHook
->on(Webhook::EVENT_TYPE_PUSH, function ($data) {
if ($data->ref === 'refs/heads/master') {
exec('git pull');
}
})
->run(); // 最后一定要调用一次 run() 函数