2017 © Pedro Peláez
 

symfony-bundle twitch-sdk-bundle

Simple wrapper around ritero/twitch-sdk

image

mika56/twitch-sdk-bundle

Simple wrapper around ritero/twitch-sdk

  • Tuesday, May 27, 2014
  • by Mika56
  • Repository
  • 1 Watchers
  • 0 Stars
  • 47 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

TwitchSDKBundle

This bundle provides a simple integration of the "TwitchSDK" from "Josef Ohnheiser" into Symfony2., (*1)

<?php
$twitch_api = $this->get('twitch');

Installation

Step 1: Composer require

$ php composer.phar require "mika56/twitch-sdk-bundle":"dev-master"

Step 2: Enable the bundle in the kernel

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new Mika56\TwitchSDKBundle\Mika56TwitchSDKBundle(),
        // ...
    );
}

Step 3: Add parameters

TwitchSDKBundle requires you to add some parameters in your parameters.yml file. You can either add "no configuration" (API calls will be anonymous) or specify your client_id, client_secret and redirect_uri:, (*2)

// app/config/parameters.yml
twitch_settings: ~

or, (*3)

// app/config/parameters.yml
twitch_settings:
  client_id: "your_twitch_app_client_id"
  client_secret: "your_twitch_app_client_secret"
  redirect_uri: "your_twitch_app_redirect_uri"

That's it!, (*4)

The Versions

27/05 2014

dev-master

9999999-dev https://github.com/Mika56/TwitchSDKBundle

Simple wrapper around ritero/twitch-sdk

  Sources   Download

MIT

The Requires

 

by Mikael Peigney

twitch twitch api twitch bundle