PHPackages                             amirsorouri00/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. [API Development](/categories/api)
4. /
5. amirsorouri00/eventbrite

ActiveLibrary[API Development](/categories/api)

amirsorouri00/eventbrite
========================

Laravel PHP Facade/Wrapper for the Eventbrite Data API v3

1.0.0(5y ago)018MITPHPPHP ^7.2

Since May 10Pushed 4y agoCompare

[ Source](https://github.com/Amirsorouri00/eventbrite-api-laravel-wrapper)[ Packagist](https://packagist.org/packages/amirsorouri00/eventbrite)[ Docs](https://github.com/Amirsorouri00/eventbrite-api-laravel-wrapper)[ RSS](/packages/amirsorouri00-eventbrite/feed)WikiDiscussions master Synced today

READMEChangelogDependencies (4)Versions (2)Used By (0)

Laravel Eventbrite
==================

[](#laravel-eventbrite)

Eventbrite API wrapper for Laravel. This package provides a simple interface to Eventbite's (awesome) API. Organize Eventbrite integration with expressive, clean PHP.

Requirements
------------

[](#requirements)

PHP &gt;= 7.2
Laravel &gt;= 6.0

Installation
------------

[](#installation)

Laravel Eventbrite uses composer to make installation a breeze.

**Install via composer**

```
composer require Amirsorouri00/eventbrite
```

**Register service provider**Add the Laravel Eventbrite service provider to your `config/app.php` file in the providers key

```
'providers' => [
    // ... other providers
    Amirsorouri00\Eventbrite\EventbriteServiceProvider::class,
]
```

**Eventbrite facade alias**Then add the `Eventbrite` facade to your `aliases` key: 'Eventbrite' =&gt; Marat555\\Eventbrite\\Facades\\Eventbrite::class.

Configuration
-------------

[](#configuration)

Configuration can be done via your `.env` file.

```
EVENTBRITE_BASE_URL=https://www.eventbriteapi.com/v3/
EVENTBRITE_TOKEN=xxxxxxx

```

> You may also publish the config file to `config/eventbrite.pzhp` for editing: `php artisan vendor:publish --provider="Amirsorouri00\Eventbrite\EventbriteServiceProvider"`

Usage
-----

[](#usage)

Laravel Eventbrite is incredibly intuitive to use.

### Introduction

[](#introduction)

Already configured everything and just want to see it in action? Take a look at the example code below.

```
