| Package Data | |
|---|---|
| Maintainer Username: | bookability |
| Maintainer Contact: | richard.davey@bookability.io (Richard Davey) |
| Package Create Date: | 2014-08-24 |
| Package Last Update: | 2014-10-10 |
| Home Page: | https://www.bookability.io |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-11-06 15:12:10 |
| Package Statistics | |
|---|---|
| Total Downloads: | 30 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 0 |
| Total Watchers: | 2 |
| Total Forks: | 0 |
| Total Open Issues: | 0 |
The package supports use with the Laravel Framework 4.* providing a Bookability facade. If you are looking for our PHP 5.3+ compatible package, please take a look at https://github.com/bookability/bookability-php.
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-l4": "1.*",
…
}
Within Laravel, locate the file ..app/config/app.php *.
Add the following to the providers array:
'providers' => array(
…
'Bookability\BookabilityL4\BookabilityServiceProvider',
…
),
Furthermore, add the following the the aliases array:
'aliases' => array(
…
'BookabilityWrapper' => 'Bookability\BookabilityL4\Facades\BookabilityWrapper',
…
),
Publish the configuration
$ php artisan config:publish bookability/bookability-l4
Lastly, run the command php composer.phar install command to install it.