Download the PHP package vzgcoders/twitchphp without Composer
On this page you can find all versions of the php package vzgcoders/twitchphp. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download vzgcoders/twitchphp
More information about vzgcoders/twitchphp
Files in vzgcoders/twitchphp
Package twitchphp
Short Description An unofficial API to interact with the IRC chat service used by Twitch.
License
Informations about the package twitchphp
TwitchPHP
A chat self-bot built with ReactPHP for the official Twitch TV Internet Relay Chat (IRC) interface.
Before you start
Before you start using this Library, you need to know how PHP works, you need to know the language and you need to know how Event Loops and Promises work. This is a fundamental requirement before you start. Without this knowledge, you will only suffer.
FAQ
- Can I run TwitchPHP on a webserver (e.g. Apache, nginx)?
- No, TwitchPHP will only run in CLI. If you want to have an interface for your bot you can integrate react/http with your bot and run it through CLI.
- PHP is running out of memory?
- Try increase your memory limit using
ini_set('memory_limit', '-1');
.
- Try increase your memory limit using
Getting Started
Requirements
- PHP 8
- This library is being built with PHP8 support in mind. PHP7 is no longer supported, but can easily be forked and modified to do so.
- Composer
- DiscordPHP (Optional)
Windows and SSL
Unfortunately PHP on Windows does not have access to the Windows Certificate Store. This is an issue because TLS gets used and as such certificate verification gets applied (turning this off is not an option).
You will notice this issue by your script exiting immediately after one loop turn without any errors. Unfortunately there is for some reason no error or exception.
As such users of this library need to download a Certificate Authority extract from the cURL website.
The path to the caextract must be set in the php.ini
for openssl.cafile
.
Recommended Extensions
- The latest PHP version.
- One of
ext-uv
(preferred),ext-libev
orevt-event
for a faster, and more performant event loop. ext-mbstring
if handling non-english characters.
Installing TwitchPHP
TwitchPHP is installed using Composer.
- Run
composer require VZGCoders/TwitchPHP
. This will install the lastest release. - Include the Composer autoload file at the top of your main file:
include __DIR__.'/vendor/autoload.php';
- Make a bot!
Configuration
- Add the required "secret" and "nick" values.
- Customize your commands and responses.
Basic Example
DiscordPHP Example
Inside of $discord->on('message'
function with use ($twitch, $twitch_relay)
Documentation
Raw documentation can be found in-line in the code.
All versions of twitchphp with dependencies
react/stream Version ^1.1
react/socket Version ^1.11
evenement/evenement Version ^3.0 || ^2.0
monolog/monolog Version ^3.2