https://github.com/xaoc-303/battle-calc
Fighting calculator. Squads vs Squads. Package for Laravel.
https://github.com/xaoc-303/battle-calc
battle calculator fighting laravel php
Last synced: 5 months ago
JSON representation
Fighting calculator. Squads vs Squads. Package for Laravel.
- Host: GitHub
- URL: https://github.com/xaoc-303/battle-calc
- Owner: xaoc-303
- Created: 2015-05-30T22:08:44.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-06-13T02:06:47.000Z (about 11 years ago)
- Last Synced: 2025-08-01T19:06:06.349Z (11 months ago)
- Topics: battle, calculator, fighting, laravel, php
- Language: PHP
- Homepage:
- Size: 297 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Battle Calc
[](https://travis-ci.org/xaoc-303/battle-calc)
[](https://packagist.org/packages/xaoc303/battle-calc)
[](https://scrutinizer-ci.com/g/xaoc-303/battle-calc/?branch=master)
## Composer
In the `require` key of `composer.json` file add the following
```json
"xaoc303/battle-calc": "~2.0"
```
or run command
```bash
$ composer require xaoc303/battle-calc:~2.0
```
Run the Composer update command
```bash
$ composer update
```
## Setting
In your `config/app.php` add `'Xaoc303\BattleCalc\BattleCalcServiceProvider'` to the end of the `providers` array
```php
'providers' => array(
'Illuminate\Foundation\Providers\ArtisanServiceProvider',
'Illuminate\Auth\AuthServiceProvider',
...
'Xaoc303\BattleCalc\BattleCalcServiceProvider',
),
```