Download the PHP package exiang/eventbrite-sdk-php without Composer
On this page you can find all versions of the php package exiang/eventbrite-sdk-php. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download exiang/eventbrite-sdk-php
More information about exiang/eventbrite-sdk-php
Files in exiang/eventbrite-sdk-php
Download exiang/eventbrite-sdk-php
More information about exiang/eventbrite-sdk-php
Files in exiang/eventbrite-sdk-php
Vendor exiang
Package eventbrite-sdk-php
Short Description PHP SDK for the Eventbrite API.
License MIT
Package eventbrite-sdk-php
Short Description PHP SDK for the Eventbrite API.
License MIT
Please rate this library. Is it a good library?
Informations about the package eventbrite-sdk-php
================== eventbrite-sdk-php
- 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 > $client = new exiang\eventbrite\HttpClient(USER_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 William
License
The library is available as open source under the terms of the MIT License.
All versions of eventbrite-sdk-php with dependencies
PHP Build Version
Package Version
Requires
php Version
>=5.4
The package exiang/eventbrite-sdk-php contains the following files
Loading the files please wait ....