Download the PHP package simply-stream/twitch-api without Composer

On this page you can find all versions of the php package simply-stream/twitch-api. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package twitch-api

PHP Twitch API implementation (by Simply-Stream.com)

QA codecov


Welcome to the PHP Twitch Helix API Library, a powerful and developer-friendly implementation of the new Twitch API " Helix," complete with robust EventSub functionality. This library seamlessly integrates the latest features from Twitch, providing a straightforward and efficient way to interact with the Twitch platform in your PHP projects.

Key Features

Helix API Support: Harness the full potential of the Twitch Helix API with ease. Retrieve user information, access streams, and more, all through a clean and intuitive PHP interface.

EventSub Functionality: Embrace the future of Twitch event handling with our comprehensive EventSub implementation. Keep your application in sync with real-time events, ensuring timely and accurate updates.

Webhook Integration: Our library fully supports webhook communication for EventSub, enabling seamless communication between Twitch and your application. Stay informed about user activities and channel events effortlessly.

Data Transfer Objects (DTOs): Differentiating itself from traditional approaches, our library employs Data Transfer Objects (DTOs) to map incoming JSON responses to PHP objects. This abstraction simplifies the handling of Twitch data, enhancing code readability and maintainability.

To see a full list of implemented APIs, have a look at the Implemented APIs section.

Installation

Implemented APIs

API Implemented Tested
AdsApi ℹ️
AnalyticsApi
BitsApi ℹ️
ChannelPointsApi
ChannelsApi
CharityApi
ChatApi
ClipsApi
ContentClassificationApi
EntitlementsApi
EventSubApi
EventSub system
ExtensionsApi
GamesApi
GoalsApi
GuestStarApi (Beta)
HypeTrainApi
ModerationApi ℹ️
PollsApi
PredictionsApi
RaidsApi
ScheduleApi
SearchApi
StreamsApi
SubscriptionsApi
TeamsApi
UsersApi ℹ️
VideosApi
WhispersApi

❗ = Tests can't be implemented due to lack of mock-api-data. Mapping should work on Twitch prod systems ️️ℹ️ = Some tests are available, some are missing due to lack of mock-api data. Mapping should work on Twitch prod systems

Tested in this case means, that functional or unit tests exist.

There's also a container api service that can hold all the APIs implemented. See TwitchApi.

EventSub

Besides the APIs, there's also a service available for the EventSub handling. This service will handle the registration to an event and also the webhook callbacks by validating the challenge send by Twitch.

Please note, that this package only supports the webhook implementation! This is due to the fact, that PHP might not be the ideal programming language to use for long running processes like a websocket.

Websocket

To use the websocket implementation, you should check out the following projects:

Usage

To get everything up and running, you need to set some things up.

Bring your own client

Instead of forcing you to implement yet another HTTP client, this library gives you the opportunity to use your own. The only restriction you got: It has to be PSR-18 compliant and implement the interface \Psr\Http\Client\ClientInterface.

We recommend either using the all in one package Guzzlehttp or PHP-HTTP with the PSR7 implementation Nyholm/PSR7 or Guzzle/PSR7.

AccessToken

In older versions, the AccessToken have been autogenerated by the sendRequest method by a TwitchProvider that has been build into this library. This provider is now removed and you need to give the $api->sendRequest(...) method an AccessToken yourself!

Due to the fact that this library still requires the PHP league implementation of an AccessTokenInterface, we recommend using https://github.com/vertisan/oauth2-twitch-helix to generate an AccessToken.

Supported Frameworks

Currently, there is only an integration for Symfony.

TODO List

Even though most of this library is ready to use, there's still a lot to do. Here is a brief overview of what will come next ordered more or less by priority:

Contribution

We welcome contributions! Feel free to open issues, submit pull requests, or join our community discussions. A short guide for contribution will follow.

Support

You really like this project and want to support us in a different way than contribution? Feel free to support me on Ko-fi ♥️

ko-fi


All versions of twitch-api with dependencies

PHP Build Version
Package Version
Requires php Version ^8.2
ext-json Version *
cuyz/valinor Version ^1.7
league/oauth2-client Version ^2.7
psr/http-client Version ^1.0
psr/log Version ^3.0
webmozart/assert Version ^1.11
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package simply-stream/twitch-api contains the following files

Loading the files please wait ....