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.
69 lines
1.8 KiB
69 lines
1.8 KiB
<?php
|
|
/**
|
|
* Fuel is a fast, lightweight, community driven PHP5 framework.
|
|
*
|
|
* @package Fuel
|
|
* @version 1.8
|
|
* @author Fuel Development Team
|
|
* @license MIT License
|
|
* @copyright 2010 - 2016 Fuel Development Team
|
|
* @link http://fuelphp.com
|
|
*/
|
|
|
|
/**
|
|
* Refuse to run oil when called from php-cgi !
|
|
*/
|
|
if (substr(php_sapi_name(), 0, 3) == 'cgi')
|
|
{
|
|
die("The use of oil is not supported when running php-cgi. Oil needs php-cli to function!\n\n");
|
|
}
|
|
|
|
/**
|
|
* Set error reporting and display errors settings. You will want to change these when in production.
|
|
*/
|
|
error_reporting(-1);
|
|
ini_set('display_errors', 1);
|
|
|
|
/**
|
|
* Website document root
|
|
*/
|
|
define('DOCROOT', __DIR__.DIRECTORY_SEPARATOR);
|
|
|
|
/**
|
|
* Path to the application directory.
|
|
*/
|
|
define('APPPATH', realpath(__DIR__.'/fuel/app/').DIRECTORY_SEPARATOR);
|
|
|
|
/**
|
|
* Path to the default packages directory.
|
|
*/
|
|
define('PKGPATH', realpath(__DIR__.'/fuel/packages/').DIRECTORY_SEPARATOR);
|
|
|
|
/**
|
|
* The path to the framework core.
|
|
*/
|
|
define('COREPATH', realpath(__DIR__.'/fuel/core/').DIRECTORY_SEPARATOR);
|
|
|
|
// Get the start time and memory for use later
|
|
defined('FUEL_START_TIME') or define('FUEL_START_TIME', microtime(true));
|
|
defined('FUEL_START_MEM') or define('FUEL_START_MEM', memory_get_usage());
|
|
|
|
// Load in the Fuel autoloader
|
|
if ( ! file_exists(COREPATH.'classes'.DIRECTORY_SEPARATOR.'autoloader.php'))
|
|
{
|
|
die("No composer autoloader found. Please run composer to install the FuelPHP framework dependencies first!\n\n");
|
|
}
|
|
|
|
// Load in the Fuel autoloader
|
|
require COREPATH.'classes'.DIRECTORY_SEPARATOR.'autoloader.php';
|
|
class_alias('Fuel\\Core\\Autoloader', 'Autoloader');
|
|
|
|
// Boot the app
|
|
require APPPATH.'bootstrap.php';
|
|
|
|
// Load oil package
|
|
\Package::load('oil');
|
|
|
|
// Fire up the command line interfact
|
|
\Oil\Command::init($_SERVER['argv']);
|