PHPackages                             jamiehollern/eventbrite - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [HTTP &amp; Networking](/categories/http)
4. /
5. jamiehollern/eventbrite

AbandonedArchivedLibrary[HTTP &amp; Networking](/categories/http)

jamiehollern/eventbrite
=======================

A PHP library to provide interactions with the Eventbrite API.

1.0.1(10y ago)2027.0k6[1 issues](https://github.com/jamiehollern/eventbrite/issues)GPL2PHPPHP &gt;=5.5

Since May 13Pushed 7y ago3 watchersCompare

[ Source](https://github.com/jamiehollern/eventbrite)[ Packagist](https://packagist.org/packages/jamiehollern/eventbrite)[ RSS](/packages/jamiehollern-eventbrite/feed)WikiDiscussions master Synced 3w ago

READMEChangelog (2)Dependencies (10)Versions (4)Used By (0)

Eventbrite PHP
==============

[](#eventbrite-php)

### Deprecated! This project contains bugs and is no longer actively maintained. Use at your own risk.

[](#deprecated-this-project-contains-bugs-and-is-no-longer-actively-maintained-use-at-your-own-risk)

A lightweight PHP wrapper for the [Eventbrite API v3](https://www.eventbrite.co.uk/developer/v3/ "Eventbrite API developer docs") using Guzzle 6.

[![Build Status](https://camo.githubusercontent.com/30f7f152e1df0d96e689191a355b84748578f730992e4bb824327af7a1ceb862/68747470733a2f2f7472617669732d63692e6f72672f6a616d6965686f6c6c65726e2f6576656e7462726974652e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/jamiehollern/eventbrite)[![Coverage Status](https://camo.githubusercontent.com/d0f3a313f697b43d47999dd37a7c287c762373989003118b143ead89eddf597c/68747470733a2f2f636f766572616c6c732e696f2f7265706f732f6a616d6965686f6c6c65726e2f6576656e7462726974652f62616467652e7376673f6272616e63683d6d617374657226736572766963653d676974687562)](https://coveralls.io/github/jamiehollern/eventbrite?branch=master)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/5dca75ab7dbc158388eb3bec36e346c0b408a78c8763f2212122f4b0a0d17015/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f6a616d6965686f6c6c65726e2f6576656e7462726974652f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/jamiehollern/eventbrite/?branch=master)[![Total Downloads](https://camo.githubusercontent.com/dcebd40fd6c85209eac1a501501de68568e1b2f7b780d68aa48e5576d48796cc/68747470733a2f2f706f7365722e707567782e6f72672f6a616d6965686f6c6c65726e2f6576656e7462726974652f646f776e6c6f616473)](https://packagist.org/packages/jamiehollern/eventbrite)[![Latest Stable Version](https://camo.githubusercontent.com/27e91fc76ea50c4276af0bda20fc64d167435f99a47ee4d3a4f5d68e3cc77cbe/68747470733a2f2f706f7365722e707567782e6f72672f6a616d6965686f6c6c65726e2f6576656e7462726974652f762f737461626c65)](https://packagist.org/packages/jamiehollern/eventbrite)[![License](https://camo.githubusercontent.com/dfc48a7a78c1f2e62877feee066436101363d39903aad8203f1b715eb9926b60/68747470733a2f2f706f7365722e707567782e6f72672f6a616d6965686f6c6c65726e2f6576656e7462726974652f6c6963656e7365)](https://packagist.org/packages/jamiehollern/eventbrite)

Requirements
============

[](#requirements)

- PHP &gt;= 5.5
- cURL if you don't want any extra config (see the [Guzzle docs](http://docs.guzzlephp.org/en/latest/faq.html#does-guzzle-require-curl))

Installation
============

[](#installation)

Install via Composer command:
`composer require jamiehollern/eventbrite`

Install via composer.json:

```
{
  "require": {
    "jamiehollern/eventbrite": "1.0.1"
  }
}

```

Once you've done this:

- Run `composer install`
- Add the autoloader to your script `require_once('vendor/autoload.php')`

Authentication
==============

[](#authentication)

This API does not deal with the OAuth authentication flow. It assumes that your app has already been authenticated and that you have an OAuth token for any accounts you're going to use. It is this OAuth token that should be passed to the class on instantiation.

You can find out more about the Eventbrite authentication process on the [Eventbrite API docs](https://www.eventbrite.co.uk/developer/v3/reference/authentication/). If you only have a single app to authenticate you can simply get a premade OAuth token by adding an app on your [Eventbrite apps page](https://www.eventbrite.co.uk/myaccount/apps/).

Examples
========

[](#examples)

Instantiating the class
-----------------------

[](#instantiating-the-class)

### Basic usage

[](#basic-usage)

To get started, you only need an OAuth token to pass into the Eventbrite class:

```
