Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 610 Bytes

File metadata and controls

31 lines (21 loc) · 610 Bytes

Eventbrite

Eventbrite APIs for Laravel 5.

Installation

Begin by installing this package through Composer.

{
    "require": {
        "coolcodemy/eventbrite": "dev-master"
    }
}

Getting started

To create a new event:

$eventbrite = new \Sqrc\Eventbrite\Eventbrite("YOUR_APP_KEY", "YOUR_USER_KEY");

// Creates a new event
$eventbrite->createEvent('Hackfest for all', 'Code for 30 Hours straight.', $startDate, $endDate, $timezone, $details);

Better documentation coming soon.

Laravel 5

I have just taken this package on and am testing for Laravel 5 compatibility.