2016-05-19 15:01:28 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Here we set the long and short URLs our app shall use
|
|
|
|
* You can override these settings in the .env file
|
|
|
|
*/
|
|
|
|
|
|
|
|
return [
|
|
|
|
'longurl' => env('APP_LONGURL', 'jonnybarnes.uk'),
|
2022-07-09 10:08:26 +01:00
|
|
|
'shorturl' => env('APP_SHORTURL', 'jmb.lv'),
|
2016-07-19 22:06:09 +01:00
|
|
|
];
|