casinelli / eventbrite
Installs: 9
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 1
Open Issues: 0
pkg:composer/casinelli/eventbrite
Requires
- php: >=5.4.0
- illuminate/support: 4.2.*
This package is not auto-updated.
Last update: 2025-09-27 22:38:34 UTC
README
Eventbrite APIs for Laravel 4.
Installation
Begin by installing this package through Composer.
{ "require": { "casinelli/eventbrite": "dev-master" } }
Getting started
To create a new event:
$eventbrite = new \Casinelli\Eventbrite\Eventbrite("YOUR_APP_KEY", "YOUR_USER_KEY"); // Creates a new event $eventbrite->createEvent('Dine with Inez', 'A huge feast of oil and mayo!!!', $startDate, $endDate, $timezone, $details);
Better documentation coming soon.