You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
556 B
27 lines
556 B
<?php |
|
/** |
|
* Sleepy - a REST framework |
|
* |
|
* |
|
* A PHP Rest Framework valuing convention over configuration, |
|
* but aiming to be as flexible as possible |
|
* |
|
* @author Timothy J. Warren |
|
* @package Sleepy |
|
*/ |
|
|
|
namespace Sleepy; |
|
|
|
define('BASEPATH', __DIR__ . '/'); |
|
define('SLEEPY_DIR', 'Sleepy'); |
|
define('APP_DIR', 'application'); |
|
define('APPPATH', __DIR__ . '/application/'); |
|
|
|
// Autoloaders |
|
include BASEPATH . 'vendor/autoload.php'; |
|
require BASEPATH . SLEEPY_DIR . '/autoload.php'; |
|
|
|
// And...bootstrap |
|
require APPPATH . 'bootstrap.php'; |
|
|
|
// End of index.php
|