mirror of
https://github.com/CyanoFresh/SmartHomePHP.git
synced 2026-03-04 00:54:03 +01:00
13 lines
212 B
PHP
13 lines
212 B
PHP
<?php
|
|
|
|
use yii\helpers\ArrayHelper;
|
|
|
|
$params = [
|
|
'adminEmail' => 'admin@example.com',
|
|
'auth' => [
|
|
'tokenExpireSec' => 2,
|
|
],
|
|
];
|
|
|
|
return ArrayHelper::merge($params, require 'params-local.php');
|