https://github.com/eventbrite/eventbrite-sdk-php
https://github.com/eventbrite/eventbrite-sdk-php
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/eventbrite/eventbrite-sdk-php
- Owner: eventbrite
- Created: 2016-10-06T20:47:32.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-05-17T19:07:10.000Z (about 2 years ago)
- Last Synced: 2025-03-02T01:11:51.026Z (3 months ago)
- Language: PHP
- Homepage:
- Size: 35.2 KB
- Stars: 0
- Watchers: 20
- Forks: 2
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
==================
eventbrite-sdk-php
==================[](https://travis-ci.org/eventbrite/eventbrite-sdk-php)
[](https://packagist.org/packages/eventbrite/eventbrite-sdk-php)
[](https://packagist.org/packages/eventbrite/eventbrite-sdk-php)
[](https://packagist.org/packages/eden/eventbrite)* 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.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 WilliamsYou can also specify API endpoints manually:
.. code-block:: php
php > $user = $client->get('/users/me/');
php > $user['id'];
1234567890
php > $user['name'];
php > Serena WilliamsContributing
------------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](http://opensource.org/licenses/MIT).