1. Go to this page and download the library: Download 8fold/php-eventbrite-sdk library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
8fold / php-eventbrite-sdk example snippets
// creates an Organization object
$eb = Eventbrite::setAuthToken(YOUR_AUTH_TOKEN, true);
// to get all the organizers
$eb->user->organizers
// to get all the events owned by the user
$eb->user->events;