sunflowerfuchs/discord-bot

An easily extendable discord bot, written in PHP

v0.1.3 2022-08-24 21:15 UTC

This package is auto-updated.

Last update: 2024-04-25 01:21:42 UTC


README

A Bot for Discord, written in PHP.

The main goal was modularity, which enables it to easily be split into independently installable plugins.

Requirements

Quickstart

The following snippet is all that is required to run the basic bot with the default plugins.

$bot = new SunflowerFuchs\DiscordBot\Bot([
    'token' => 'XXXXX'
]);
$bot->run();

Other features can easily be added to the Bot by just adding more plugins, like for example the TikTok Plugin.

$bot = new SunflowerFuchs\DiscordBot\Bot($options);
$bot->registerPlugin(new TiktokPlugin());
$bot->run();