Battle Calc
, (*1)
Composer
In the require key of composer.json file add the following, (*2)
"xaoc303/battle-calc": "~2.0"
or run command, (*3)
$ composer require xaoc303/battle-calc:~2.0
Run the Composer update command, (*4)
$ composer update
Setting
In your config/app.php add 'Xaoc303\BattleCalc\BattleCalcServiceProvider' to the end of the providers array, (*5)
'providers' => array(
'Illuminate\Foundation\Providers\ArtisanServiceProvider',
'Illuminate\Auth\AuthServiceProvider',
...
'Xaoc303\BattleCalc\BattleCalcServiceProvider',
),