php-censor/index.php
2013-05-22 16:36:55 +01:00

19 lines
398 B
PHP

<?php
/**
* PHPCI - Continuous Integration for PHP
*
* @copyright Copyright 2013, Block 8 Limited.
* @license https://github.com/Block8/PHPCI/blob/master/LICENSE.md
* @link http://www.phptesting.org/
*/
session_start();
error_reporting(E_ALL);
ini_set('display_errors', 'on');
require_once('bootstrap.php');
$fc = new PHPCI\Application(b8\Config::getInstance());
print $fc->handleRequest();