rauwebieten/eventbrite-sdk-php

There is no license information available for the latest version (1.0.3) of this package.

PHP SDK for the Eventbrite API.

1.0.3 2019-10-01 12:29 UTC

This package is auto-updated.

Last update: 2024-04-29 04:06:50 UTC


README

Build Status Latest Stable Version Total Downloads License

Installation

Clone the repo. Once this is public we can add version control and installation via composer.

The Eventbrite PHP SDK makes it easy to interact with the Eventbrite API:

.. code-block:: php

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:

.. code-block:: php

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.

License

The library is available as open source under the terms of the MIT License.