casinelli / eventbrite
There is no license information available for the latest version (dev-master) of this package.
dev-master
2015-03-26 16:10 UTC
Requires
- php: >=5.4.0
- illuminate/support: 4.2.*
Requires (Dev)
None
Suggests
None
Provides
None
Conflicts
None
Replaces
None
This package is not auto-updated.
Last update: 2026-08-30 03:24:14 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.