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() 函数

const EVENT_TYPE_TEST     = 'ping';  // webHook 页面点击测试时发出的请求
const EVENT_TYPE_PUSH     = 'push';  // 推送事件
const EVENT_TYPE_TOPIC    = 'topic';  // 讨论相关事件
const EVENT_TYPE_MEMBER   = 'member';  // 用户相关事件
const EVENT_TYPE_TASK     = 'task';   // 任务操作事件
const EVENT_TYPE_DOCUMENT = 'document';  // 文档操作事件
const EVENT_TYPE_WATCH    = 'watch';   // 仓库被关注/取消关注时的事件
const EVENT_TYPE_STAR     = 'star';   // 仓库被收藏/取消收藏时的事件
const EVENT_TYPE_PR       = 'pull_request';  // 暂不知道在哪里会触发
const EVENT_TYPE_MR       = 'merge_request';  // 发起MR与合并MR时的事件
bash
composer