xaoc303/battle-calc

There is no license information available for the latest version (v2.1) of this package.

v2.1 2015-06-12 16:14 UTC

This package is not auto-updated.

Last update: 2024-03-16 14:57:23 UTC


README

Build Status Latest Stable Version Scrutinizer Code Quality

Composer

In the require key of composer.json file add the following

"xaoc303/battle-calc": "~2.0"

or run command

$ composer require xaoc303/battle-calc:~2.0

Run the Composer update command

$ composer update

Setting

In your config/app.php add 'Xaoc303\BattleCalc\BattleCalcServiceProvider' to the end of the providers array

'providers' => array(

    'Illuminate\Foundation\Providers\ArtisanServiceProvider',
    'Illuminate\Auth\AuthServiceProvider',
    ...
    'Xaoc303\BattleCalc\BattleCalcServiceProvider',

),