shucream0117/discord-php

Discord client for PHP

v1.1.0 2025-02-23 16:51 UTC

This package is auto-updated.

Last update: 2025-03-23 17:03:24 UTC


README

Requirement

  • PHP >= 7.4.x

Installation

via composer.

$ composer require shucream0117/discord-php

Usage

$discord = new Discord('http://your-discord-incoming-webhook-url');

// send a message with mention
$discord->sendText('this message will be posted');

// send a message with mention
$discord->sendText('mention!!', ['12345678']);

// send a message with embeds
$discord->sendTextWithEmbeds(
    'this message will be posted with embeds', 
    [(new Embed())->setTitle('title')]
);