PHPackages                             dcblogdev/laravel-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. dcblogdev/laravel-eventbrite

ActiveLibrary[API Development](/categories/api)

dcblogdev/laravel-eventbrite
============================

A Laravel Eventbrite package

v1.2.4(4y ago)64.4k↓31.1%1MITPHP

Since Feb 24Pushed 2y ago1 watchersCompare

[ Source](https://github.com/dcblogdev/laravel-eventbrite)[ Packagist](https://packagist.org/packages/dcblogdev/laravel-eventbrite)[ Docs](https://github.com/dcblogdev/laravel-eventbrite)[ GitHub Sponsors](https://github.com/dcblogdev)[ RSS](/packages/dcblogdev-laravel-eventbrite/feed)WikiDiscussions master Synced 2d ago

READMEChangelog (8)DependenciesVersions (9)Used By (0)

Community
---------

[](#community)

There is a Discord community.  For quick help, ask questions in the appropriate channel.

[![Latest Version on Packagist](https://camo.githubusercontent.com/e4f4c53123ab8f67dcf811763305e237c37fbe6be4553ec9c2a156f56b4c34f8/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6463626c6f676465762f6c61726176656c2d6576656e7462726974652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/dcblogdev/laravel-eventbrite)[![Total Downloads](https://camo.githubusercontent.com/c682a16cd4cb96b32351b0067cad2fdc58f7b24376e9fb203ffa4dda109aebc4/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6463626c6f676465762f6c61726176656c2d6576656e7462726974652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/dcblogdev/laravel-eventbrite)

[![Logo](https://repository-images.githubusercontent.com/242608028/89897400-49bf-11eb-8870-028ccfbcc7b2)](https://repository-images.githubusercontent.com/242608028/89897400-49bf-11eb-8870-028ccfbcc7b2)

A Laravel package for working with Eventbrite. In order to use this package you must have a Eventbrite application created at

Eventbrite API documentation can be found at:

Application Register
====================

[](#application-register)

To use Eventbrite API an application needs creating at

Click the Create API Key button then fill in the form

Install
=======

[](#install)

Via Composer

```
composer require dcblogdev/laravel-eventbrite

```

Config
------

[](#config)

You can publish the config file with:

```
php artisan vendor:publish --provider="Dcblogdev\Eventbrite\EventbriteServiceProvider" --tag="config"

```

When published, the config/box.php config file contains:

```
return [
    'key' => env('EVENTBRITE_KEY'),
    'org' => env('EVENTBRITE_ORG_ID'),
];

```

.ENV Configuration You should add the env variables to your .env file, this allows you to use a different application on different servers.

```
EVENTBRITE_KEY needs your application key

EVENTBRITE_ORG_ID can be used to set your organisation.

EVENTBRITE_KEY=
EVENTBRITE_ORG_ID=

```

Usage
-----

[](#usage)

Import Namespace

```
use Dcblogdev\Eventbrite\Facades\Eventbrite;
```

A routes example:

```
Route::get('eventbrite', function() {

    //get all events
    Eventbrite::events();

});
```

Calls can be made by referencing Eventbrite:: then the verb get,post,put,patch or delete followed by the end point to call. An array can be passed as a second option.

The end points are relative paths after

Example GET request

```
Eventbrite::get('users/me/organizations');
```

The formula is:

```
Eventbrite::get('path', $array);
Eventbrite::post('path', $array);
Eventbrite::put('path', $array);
Eventbrite::patch('path', $array);
Eventbrite::delete('path', $array);
```

Change log
----------

[](#change-log)

Please see the [changelog](changelog.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Contributions are welcome and will be fully credited.

Contributions are accepted via Pull Requests on [Github](https://github.com/dcblogdev/laravel-eventbrite).

Pull Requests
-------------

[](#pull-requests)

- **Document any change in behaviour** - Make sure the `readme.md` and any other relevant documentation are kept up-to-date.
- **Consider our release cycle** - We try to follow [SemVer v2.0.0](http://semver.org/). Randomly breaking public APIs is not an option.
- **One pull request per feature** - If you want to do more than one thing, send multiple pull requests.

Security
--------

[](#security)

If you discover any security related issues, please email  email instead of using the issue tracker.

License
-------

[](#license)

license. Please see the [license file](license.md) for more information.

###  Health Score

33

—

LowBetter than 72% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity28

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity62

Established project with proven stability

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~107 days

Recently: every ~86 days

Total

8

Last Release

1570d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/39399156?v=4)[dcblog](/maintainers/dcblog)[@dcblog](https://github.com/dcblog)

---

Top Contributors

[![dcblogdev](https://avatars.githubusercontent.com/u/1018170?v=4)](https://github.com/dcblogdev "dcblogdev (13 commits)")

---

Tags

laraveleventbrite

### Embed Badge

![Health badge](/badges/dcblogdev-laravel-eventbrite/health.svg)

```
[![Health](https://phpackages.com/badges/dcblogdev-laravel-eventbrite/health.svg)](https://phpackages.com/packages/dcblogdev-laravel-eventbrite)
```

###  Alternatives

[rakibdevs/openweather-laravel-api

Laravel package to connect https://openweathermap.org/ to get customized weather data for any location on the globe immediately

7652.6k](/packages/rakibdevs-openweather-laravel-api)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
