realdark / eventful-web-api
A PHP implementation of Eventful's Web API.
Installs: 8 318
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 1
Open Issues: 0
Requires
- php: >=5.4.1
- fpoirotte/http_request2: dev-trunk
- themattharris/tmhoauth: 0.8.*
This package is not auto-updated.
Last update: 2025-03-29 20:50:21 UTC
README
A PHP implementation of Eventful's Web API.
It includes the following
- Helper methods for all API methods
- PSR-4 autoloading support.
Requirements
- PHP 5.4.1 or greater
- themattharris/tmhoauth
- fpoirotte/http_request2
Installation
Add eventful-web-api
as a dependency to your composer.json:
"require": {
"realdark/eventful-web-api": "dev-master"
}
All dependencies will be installed automatically.
Original version
You can download the original version from here.
Modifications
- All http protocols are updated to https
- Pear is removed. All errors are now Exceptions
- Modified to work with composer
Examples
You can see them here: Eventful Api Doc
$key = 'your api key';
$api = new Services_Eventful($key);
$args = [
'keywords' => 'eminem'
];
$events = $api->call('events/search', $args);
var_dump($events);
All responses are SimpleXMLElement objects
License
Eventful, Inc license. Please see LICENSE.md for more information.