staffmanager/config/general.php
Miguel Nogueira 4eb115d165 Revert "Apply fixes from StyleCI (pull request #6)"
This reverts pull request #6.

> This pull request applies code style fixes from an analysis carried out by [StyleCI](https://bitbucket.styleci.io).
> 
> For more information, click [here](https://bitbucket.styleci.io/analyses/a2Jl7D).
2020-10-21 00:29:50 +00:00

28 lines
556 B
PHP

<?php
return [
'urls' =>
[
'mojang' => [
'statuscheck' => env('MOJANG_STATUS_URL') ?? 'https://status.mojang.com/check',
'api' => env('MOJANG_API_URL') ?? ' https://api.mojang.com',
'session' => env('MOJANG_SESSIONAPI_URL') ?? 'https://sessionserver.mojang.com'
],
'ipapi' => [
'ipcheck' => env('IPGEO_API_URL') ?? 'https://api.ipgeolocation.io/ipgeo'
]
],
'keys' => [
'ipapi' => [
'apikey' => env('IPGEO_API_KEY')
]
]
];