https://github.com/dcsg/eventbriteapiconnector
Eventbrite Api Connector is a lightweight PHP 5.3 library for issuing the Eventbrite API.
https://github.com/dcsg/eventbriteapiconnector
Last synced: about 1 year ago
JSON representation
Eventbrite Api Connector is a lightweight PHP 5.3 library for issuing the Eventbrite API.
- Host: GitHub
- URL: https://github.com/dcsg/eventbriteapiconnector
- Owner: dcsg
- License: mit
- Created: 2013-09-01T22:36:43.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2014-03-21T11:33:46.000Z (about 12 years ago)
- Last Synced: 2025-04-01T15:13:36.763Z (about 1 year ago)
- Language: PHP
- Size: 270 KB
- Stars: 5
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Eventbrite API Connector
========================
[](https://travis-ci.org/dcsg/EventbriteApiConnector) [](https://packagist.org/packages/dcsg/eventbrite-api-connector) [](https://packagist.org/packages/dcsg/eventbrite-api-connector) [](https://packagist.org/packages/dcsg/eventbrite-api-connector) [](https://packagist.org/packages/dcsg/eventbrite-api-connector) [](https://scrutinizer-ci.com/g/dcsg/EventbriteApiConnector/) [](https://scrutinizer-ci.com/g/dcsg/EventbriteApiConnector/) [](https://insight.sensiolabs.com/projects/159123de-9d05-4af3-a650-6e8ea7aadaea)
Eventbrite Api Connector is a lightweight PHP 5.3 library for issuing the Eventbrite API.
### Instalation
#### Composer
```json
"require": {
...
"dcsg/eventbrite-api-connector": "dev-master"
}
```
### Usage
```php
'YOUR APP KEY'
);
$params = array(
'keywords' => 'php'
);
$eventbrite = new Eventbrite(new BuzzHttpAdapter(), $apiKeys);
$results = $eventbrite->get('event_search', $params);
```
### TODO
* Implement more HTTP Adapters
* Implement OAuth2.
* Add documentation.
### Credits
* [Daniel Gomes](https://github.com/dcsg)
* Http Adapters inspired by [Geocoder PHP Library](https://github.com/geocoder-php/Geocoder)
### License
**Eventbrite API Connector** is released under the MIT License. See the bundled [LICENSE](https://github.com/dcsg/EventbriteApiConnector/blob/master/LICENSE) file for details.