All Projects → nopjmp → Discord Webhooks

nopjmp / Discord Webhooks

Licence: mit
A simple lightweight Discord webhook client library.

Projects that are alternatives of or similar to Discord Webhooks

Vk2discord
🔧 Автоматическая публикация записей из группы или профиля VK.COM в канал Discord
Stars: ✭ 45 (+25%)
Mutual labels:  webhooks, discord
Webhook Discord
A simple Javascript file for nicely formatting Discord webhooks
Stars: ✭ 81 (+125%)
Mutual labels:  webhooks, discord
Novagram
An Object-Oriented PHP library for Telegram Bots
Stars: ✭ 112 (+211.11%)
Mutual labels:  webhooks, composer
Kuro
An easy to use self bot with different utilities written in NodeJS
Stars: ✭ 31 (-13.89%)
Mutual labels:  discord
Modmail
A feature rich discord Modmail bot
Stars: ✭ 957 (+2558.33%)
Mutual labels:  discord
Translucenttb
A lightweight utility that makes the Windows taskbar translucent/transparent.
Stars: ✭ 8,816 (+24388.89%)
Mutual labels:  discord
Spotify Discord
Combine Discord and Spotify into one
Stars: ✭ 36 (+0%)
Mutual labels:  discord
Ida Rpc
Discord rich presence plugin for IDA Pro 7.0
Stars: ✭ 31 (-13.89%)
Mutual labels:  discord
Epilink
Authenticate people on your Discord servers and give them roles automatically. All-in-one server back-end, Discord bot and front-end. Works with Google, Microsoft and any OpenID Connect provider.
Stars: ✭ 36 (+0%)
Mutual labels:  discord
Discord Bots
A collection of Discord programs to run autonomously
Stars: ✭ 34 (-5.56%)
Mutual labels:  discord
Cj
CJ is a Discord bot that hangs around in the open.mp/burgershot.gg community discord.
Stars: ✭ 34 (-5.56%)
Mutual labels:  discord
Nem Php
NEM Blockchain NIS API Wrapper and Software Development Kit for PHP
Stars: ✭ 32 (-11.11%)
Mutual labels:  composer
Yagpdb Cc
Custom commands for the YAGPDB Discord bot🤖
Stars: ✭ 35 (-2.78%)
Mutual labels:  discord
Packagist Mirror
Creates Packagist.org mirror site.
Stars: ✭ 32 (-11.11%)
Mutual labels:  composer
Composify
Turn WordPress plugin zip files into git repositories, so that composer version constraints work properly.
Stars: ✭ 36 (+0%)
Mutual labels:  composer
Phalcon
📕 基于Phalcon集成Composer,事件监听,中间件,MongoDB,Redis
Stars: ✭ 31 (-13.89%)
Mutual labels:  composer
Htmlcache
Laravel middleware to cache the rendered html
Stars: ✭ 35 (-2.78%)
Mutual labels:  composer
Ninjabotcore
C# Discord Bot Created Using .Net Core
Stars: ✭ 34 (-5.56%)
Mutual labels:  discord
Rexrex
🦖 Composable JavaScript regular expressions
Stars: ✭ 34 (-5.56%)
Mutual labels:  composer
Discord4j
Discord4J is a fast, powerful, unopinionated, reactive library to enable quick and easy development of Discord bots for Java, Kotlin, and other JVM languages using the official Discord Bot API.
Stars: ✭ 973 (+2602.78%)
Mutual labels:  discord

discord-webhooks

Discord webhooks is a simple client for Discord's webhook API.

Motivation

While this is probably "yet another" library for Discord's webhook system, I wanted to make my own. Discord doesn't support BitBucket's webhook system and the Slack compatible endpoint doesn't send a message.

Getting Started

You can either copy the PHP file directly into your project or preferable just use composer.

Composer require command

composer require nopjmp/discord-webhooks

Usage

It is fairly easy to use. I'll throw in an example.

use \DiscordWebhooks\Client;
use \DiscordWebhooks\Embed;

$webhook = new Client('DISCORD_WEBHOOK_URL');
$embed = new Embed();

$embed->description('This is an embed');

$webhook->username('Bot')->message('Hello, Human!')->embed($embed)->send();

License

The project is MIT licensed. To read the full license, open LICENSE.md.

Contributing

Pull requests and issues are open!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].