2017 © Pedro Peláez
 

library eventful-web-api

A PHP implementation of Eventful's Web API.

image

realdark/eventful-web-api

A PHP implementation of Eventful's Web API.

  • Friday, October 16, 2015
  • by realdark
  • Repository
  • 1 Watchers
  • 0 Stars
  • 8,317 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 2 % Grown

The README.md

Eventful Web Api

A PHP implementation of Eventful's Web API., (*1)

It includes the following

  • Helper methods for all API methods
  • PSR-4 autoloading support.

Requirements

Installation

Add eventful-web-api as a dependency to your composer.json:, (*2)

"require": {
    "realdark/eventful-web-api": "dev-master"
}

All dependencies will be installed automatically., (*3)

Original version

You can download the original version from here., (*4)

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, (*5)

$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, (*6)

License

Eventful, Inc license. Please see LICENSE.md for more information., (*7)

The Versions

16/10 2015

dev-master

9999999-dev

A PHP implementation of Eventful's Web API.

  Sources   Download

Eventful

The Requires

 

by Avatar realdark