{"id":15703811,"url":"https://github.com/dcblogdev/laravel-eventbrite","last_synced_at":"2025-05-12T15:10:15.076Z","repository":{"id":56964051,"uuid":"242608028","full_name":"dcblogdev/laravel-eventbrite","owner":"dcblogdev","description":"Laravel package for working with Eventbrite's API","archived":false,"fork":false,"pushed_at":"2023-10-23T12:02:35.000Z","size":19,"stargazers_count":6,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-11T17:28:05.678Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dcblogdev.png","metadata":{"files":{"readme":"readme.md","changelog":"changelog.md","contributing":null,"funding":".github/FUNDING.yml","license":"license.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":["dcblogdev"]}},"created_at":"2020-02-23T23:29:36.000Z","updated_at":"2024-03-18T09:05:08.000Z","dependencies_parsed_at":"2024-10-09T13:46:35.070Z","dependency_job_id":null,"html_url":"https://github.com/dcblogdev/laravel-eventbrite","commit_stats":{"total_commits":10,"total_committers":1,"mean_commits":10.0,"dds":0.0,"last_synced_commit":"bf3e4aa66008ed79f5528d6ab5e6ddad23f4df8a"},"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dcblogdev%2Flaravel-eventbrite","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dcblogdev%2Flaravel-eventbrite/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dcblogdev%2Flaravel-eventbrite/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dcblogdev%2Flaravel-eventbrite/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dcblogdev","download_url":"https://codeload.github.com/dcblogdev/laravel-eventbrite/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249902375,"owners_count":21342826,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-03T20:06:36.028Z","updated_at":"2025-04-20T13:31:07.849Z","avatar_url":"https://github.com/dcblogdev.png","language":"PHP","funding_links":["https://github.com/sponsors/dcblogdev"],"categories":[],"sub_categories":[],"readme":"## Community\n\nThere is a Discord community. https://discord.gg/VYau8hgwrm For quick help, ask questions in the appropriate channel.\n\n[![Latest Version on Packagist](https://img.shields.io/packagist/v/dcblogdev/laravel-eventbrite.svg?style=flat-square)](https://packagist.org/packages/dcblogdev/laravel-eventbrite)\n[![Total Downloads](https://img.shields.io/packagist/dt/dcblogdev/laravel-eventbrite.svg?style=flat-square)](https://packagist.org/packages/dcblogdev/laravel-eventbrite)\n\n![Logo](https://repository-images.githubusercontent.com/242608028/89897400-49bf-11eb-8870-028ccfbcc7b2)\n\nA Laravel package for working with Eventbrite. In order to use this package you must have a Eventbrite application created at https://www.eventbrite.com/platform/\n\nEventbrite API documentation can be found at:\nhttps://www.eventbrite.com/platform/docs/introduction\n\n# Application Register\nTo use Eventbrite API an application needs creating at https://www.eventbrite.co.uk/account-settings/apps\n\nClick the Create API Key button then fill in the form\n\n# Install\n\nVia Composer\n\n```\ncomposer require dcblogdev/laravel-eventbrite\n```\n\n## Config\n\nYou can publish the config file with:\n\n```\nphp artisan vendor:publish --provider=\"Dcblogdev\\Eventbrite\\EventbriteServiceProvider\" --tag=\"config\"\n```\n\nWhen published, the config/box.php config file contains:\n\n```\nreturn [\n    'key' =\u003e env('EVENTBRITE_KEY'),\n    'org' =\u003e env('EVENTBRITE_ORG_ID'),\n];\n```\n\n.ENV Configuration\nYou should add the env variables to your .env file, this allows you to use a different application on different servers.\n\n```\nEVENTBRITE_KEY needs your application key\n\nEVENTBRITE_ORG_ID can be used to set your organisation.\n\nEVENTBRITE_KEY=\nEVENTBRITE_ORG_ID=\n```\n\n## Usage\n\nImport Namespace\n\n```php\nuse Dcblogdev\\Eventbrite\\Facades\\Eventbrite;\n```\n\nA routes example:\n\n```php\nRoute::get('eventbrite', function() {\n\n    //get all events\n    Eventbrite::events(); \n    \n});\n```\n\nCalls 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.\n\nThe end points are relative paths after https://www.eventbriteapi.com/v3/\n\nExample GET request\n\n```php\nEventbrite::get('users/me/organizations');\n```\n\nThe formula is:\n\n```php\nEventbrite::get('path', $array);\nEventbrite::post('path', $array);\nEventbrite::put('path', $array);\nEventbrite::patch('path', $array);\nEventbrite::delete('path', $array);\n```\n\n## Change log\n\nPlease see the [changelog][3] for more information on what has changed recently.\n\n## Contributing\n\nContributions are welcome and will be fully credited.\n\nContributions are accepted via Pull Requests on [Github][4].\n\n## Pull Requests\n\n- **Document any change in behaviour** - Make sure the `readme.md` and any other relevant documentation are kept up-to-date.\n\n- **Consider our release cycle** - We try to follow [SemVer v2.0.0][5]. Randomly breaking public APIs is not an option.\n\n- **One pull request per feature** - If you want to do more than one thing, send multiple pull requests.\n\n## Security\n\nIf you discover any security related issues, please email dave@dcblog.dev email instead of using the issue tracker.\n\n## License\n\nlicense. Please see the [license file][6] for more information.\n\n[3]:    changelog.md\n[4]:    https://github.com/dcblogdev/laravel-eventbrite\n[5]:    http://semver.org/\n[6]:    license.md\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdcblogdev%2Flaravel-eventbrite","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdcblogdev%2Flaravel-eventbrite","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdcblogdev%2Flaravel-eventbrite/lists"}