default.php 576 Bytes
<?php

/**
 * Read more on Config Files
 * @link http://phalcon-rest.redound.org/config_files.html
 */

return [

    'application' => [
        'title' => 'Phalcon REST API',
        '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
    ]
];