| Package Data | |
|---|---|
| Maintainer Username: | whackashoe | 
| Maintainer Contact: | whackashoe@gmail.com (Jett LaRue) | 
| Package Create Date: | 2014-12-10 | 
| Package Last Update: | 2014-12-10 | 
| Home Page: | |
| Language: | PHP | 
| License: | MIT | 
| Last Refreshed: | 2025-11-03 15:23:52 | 
| Package Statistics | |
|---|---|
| Total Downloads: | 46 | 
| Monthly Downloads: | 0 | 
| Daily Downloads: | 0 | 
| Total Stars: | 0 | 
| Total Watchers: | 1 | 
| Total Forks: | 0 | 
| Total Open Issues: | 0 | 
A bathroom stall for you to scratch on. Uses redis backend and canvas.
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.
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');
    <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