shucream0117/discord-php

Discord client for PHP

Installs: 1 381

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/shucream0117/discord-php

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

This package is auto-updated.

Last update: 2025-09-23 18:02:06 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')]
);