PHPackages                             bookability/bookability-php - 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. bookability/bookability-php

ActiveLibrary[API Development](/categories/api)

bookability/bookability-php
===========================

Bookability client for PHP with support for API v1

1.1.1(11y ago)265[2 issues](https://github.com/bookability/bookability-php/issues)1MITPHPPHP &gt;=5.3.0

Since Sep 17Pushed 11y ago2 watchersCompare

[ Source](https://github.com/bookability/bookability-php)[ Packagist](https://packagist.org/packages/bookability/bookability-php)[ Docs](https://github.com/bookability/bookability-php)[ RSS](/packages/bookability-bookability-php/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (8)Dependencies (1)Versions (9)Used By (1)

[![Latest Stable Version](https://camo.githubusercontent.com/1643fe7fa6c502a014ce1f66047cb92a356867e8e6b84d3832fbd00af5bf10f7/68747470733a2f2f706f7365722e707567782e6f72672f626f6f6b6162696c6974792f626f6f6b6162696c6974792d7068702f762f737461626c652e737667)](https://packagist.org/packages/bookability/bookability-php) [![Total Downloads](https://camo.githubusercontent.com/5487c5184b4e7b84e6f8fd65cf11c33408cfece41a7526b151a14f1873f62635/68747470733a2f2f706f7365722e707567782e6f72672f626f6f6b6162696c6974792f626f6f6b6162696c6974792d7068702f646f776e6c6f6164732e737667)](https://packagist.org/packages/bookability/bookability-php) [![Latest Unstable Version](https://camo.githubusercontent.com/1eaf3757fd5986b479e7cfa5b19921541c6d7573ced22aa06751bfadf2eb2f5a/68747470733a2f2f706f7365722e707567782e6f72672f626f6f6b6162696c6974792f626f6f6b6162696c6974792d7068702f762f756e737461626c652e737667)](https://packagist.org/packages/bookability/bookability-php) [![License](https://camo.githubusercontent.com/57d8518def431c66cffc968e70177b49c8fe10c4b26c6dcbdb62f469a6ac9c79/68747470733a2f2f706f7365722e707567782e6f72672f626f6f6b6162696c6974792f626f6f6b6162696c6974792d7068702f6c6963656e73652e737667)](https://packagist.org/packages/bookability/bookability-php)

Bookability
===========

[](#bookability)

A simple API package for integration with [Bookability](https://www.bookability.io) with PHP 5.3+. If you are looking for our Laravel 4 compatible package, please take a look at .

Installation
------------

[](#installation)

### Requirements

[](#requirements)

- Any flavour of PHP 5.3+ should do
- \[optional\] PHPUnit to execute the test suite

### With Composer

[](#with-composer)

The easiest way to install Bookability is via composer.

In order to install add the following to your `composer.json` file within the `require` block:

```
"require": {
	…
	"bookability/bookability-php": "1.*",
	…
}

```

You can then use the following in your code:

```
$bookability = new Bookability();
$bookability->dsn = 'http://username@project:your-key-goes-here@api.bookability.io:80/v1';
$events = $bookability->events->find();

```

### Without Composer

[](#without-composer)

Download the Bookability folder from the repo and save the file into your project path somewhere.

```
