shucream0117 / discord-php
Discord client for PHP
Installs: 1 173
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- php: ^7.4.0
- ext-json: *
- ext-mbstring: *
- guzzlehttp/guzzle: ^6.5
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')] );