mirror of
https://github.com/elyby/accounts.git
synced 2024-10-30 15:33:21 +05:30
14 lines
348 B
PHP
14 lines
348 B
PHP
|
<?php
|
||
|
return [
|
||
|
'admin-ely' => [
|
||
|
'access_token' => '07541285-831e-1e47-e314-b950309a6fca',
|
||
|
'session_id' => 1,
|
||
|
'expire_time' => time() + 3600,
|
||
|
],
|
||
|
'admin-ely-expired' => [
|
||
|
'access_token' => '2977ec21-3022-96f8-544db-2e1df936908',
|
||
|
'session_id' => 1,
|
||
|
'expire_time' => time() - 3600,
|
||
|
],
|
||
|
];
|