2017 © Pedro Peláez
 

library eventbrite-sdk-php

image

eventbrite/eventbrite-sdk-php

  • Monday, July 30, 2018
  • by malina-eb
  • Repository
  • 134 Watchers
  • 18 Stars
  • 1,191 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 11 Forks
  • 10 Open issues
  • 4 Versions
  • 15 % Grown

The README.md

==================, (*1)

eventbrite-sdk-php

Build Status Latest Stable Version Total Downloads License, (*2)

  • Official Eventbrite_ SDK for PHP
  • API Reference: https://developer.eventbrite.com/docs/
  • You can register an Eventbrite app at https://www.eventbrite.com/myaccount/apps/

Installation

Clone the repo. Once this is public we can add version control and installation via composer., (*3)

The Eventbrite PHP SDK makes it easy to interact with the Eventbrite API:, (*4)

.. code-block:: php, (*5)

php > require_once('HttpClient.php');
php > $client = new HttpClient('TOKEN');
php > $user = $client->get_user(1234567890);
php > $user['id'];
php > 1234567890
php > $user['name'];
php > Serena Williams

You can also specify API endpoints manually:, (*6)

.. code-block:: php, (*7)

php > $user = $client->get('/users/me/');
php > $user['id'];
1234567890
php > $user['name'];
php > Serena Williams

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/eventbrite/eventbrite-sdk-python., (*8)

License

The library is available as open source under the terms of the MIT License., (*9)

The Versions

30/07 2018

dev-fix_unit_tests

dev-fix_unit_tests

  Sources   Download

30/07 2018

dev-access_methods

dev-access_methods

  Sources   Download

30/07 2018

dev-EB-45284

dev-EB-45284

  Sources   Download

31/07 2017

dev-master

9999999-dev

PHP SDK for the Eventbrite API.

  Sources   Download

The Development Requires