whackashoe/bstall

Bathroom Stall for Laravel 4
46
Install
composer require whackashoe/bstall
PHP:>=5.4.0
License:MIT
Last Updated:Dec 10, 2014
Links: GitHub  ·  Packagist
Maintainer: whackashoe

Bathroom Stall for Laravel 4

A bathroom stall for you to scratch on. Uses redis backend and canvas.

Installation

The Bstall Service Provider can be installed via Composer by requiring the whackashoe/bstall package and setting the minimum-stability to dev (required for Laravel 4) in your project's composer.json.

{
    "require": {
        "laravel/framework": "4.2.*",
        "whackashoe/bstall": "dev-master"
    },
    "minimum-stability": "dev"
}

Update your packages with composer update or install with composer install.

Usage

To use the Captcha Service Provider, you must register the provider when bootstrapping your Laravel application. There are essentially two ways to do this.

Find the providers key in app/config/app.php and register the Captcha Service Provider.

    'providers' => array(
        // ...
        'Whackashoe\Bstall\BstallServiceProvider',
    )

Find the aliases key in app/config/app.php.

    'aliases' => array(
        // ...
        'Bstall' => 'Whackashoe\Bstall\Facades\Bstall',
    )

Add the draw route to your routes.php file:

    Route::post('/bstall/draw/{id}', 'Whackashoe\Bstall\Controllers\BstallController@draw');

Example Usage


    <html>
        <head>
            <title>stall test</title>
        </head>
        <body>
            {{ Bstall::make("first_stall", 300, 300, 0xFFFFFF) }}
        </body>
    </html>

To clear all stalls quickly just run php artisan cache:clear