ferrisbane/basket

A small basket package that packs a punch.

v0.1.0 2018-03-18 22:47 UTC

This package is auto-updated.

Last update: 2024-09-29 05:28:07 UTC


README

A small PHP basket package that packs a punch.

Yes docblocks will be added

Examples

Examples to come

Installation

This package requires PHP 5.6+ (has not been tested on lower versions).

The package works on Windows and Linux webservers (not been tested on Mac)

To install through composer you can either use composer require ferrisbane/basket (while inside your project folder) or include the package in your composer.json.

"ferrisbane/basket": "0.1.*"

Then run either composer install or composer update to download the package.

To use the package with Laravel 5 add the ShortDB service provider to the list of service providers in config/app.php.

'providers' => [
    ...

    Ferrisbane\Basket\Laravel5ServiceProvider::class

    ...
];

Then use php artisan vendor:publish to publish the config.

If you have changed the namespace of your project you can define it inside config/basket.php

'namespace' => 'App',

Setup

Docs to come