15479603
Alex Savenko
initialize
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?php
/**
* Read more on Config Files
* @link http://phalcon-rest.redound.org/config_files.html
*/
return [
'application' => [
'title' => 'Phalcon REST Boilerplate',
'description' => 'This repository provides an boilerplate application with all of the classes of Phalcon REST library implemented.',
'baseUri' => '/',
'viewsDir' => __DIR__ . '/../views/',
],
'authentication' => [
'secret' => '66E98BD18A2D96AF37DE5CE5663F9',
'expirationTime' => 86400 * 7, // One week till token expires
]
];
|