26 lines
738 B
PHP
26 lines
738 B
PHP
<?php
|
|
|
|
/*
|
|
* Copyright (c) 2025, Антон Аксенов
|
|
* This file is part of m3u.su project
|
|
* MIT License: https://git.axenov.dev/IPTV/web/src/branch/master/LICENSE
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'title' => env('APP_TITLE', 'Агрегатор плейлистов'),
|
|
'base_url' => rtrim(trim(env('APP_URL', 'http://localhost:8080')), '/'),
|
|
'debug' => bool(env('APP_DEBUG', false)),
|
|
'env' => env('APP_ENV', env('IPTV_ENV', 'prod')),
|
|
'timezone' => env('APP_TIMEZONE', 'GMT'),
|
|
'page_size' => int(env('PAGE_SIZE', 10)),
|
|
'repo_url' => env('REPO_URL', 'https://git.axenov.dev/IPTV'),
|
|
'pls_encodings' => [
|
|
'UTF-8',
|
|
'CP1251',
|
|
// 'CP866',
|
|
// 'ISO-8859-5',
|
|
],
|
|
];
|