phpci/public/index.php

19 lines
458 B
PHP
Raw Normal View History

2013-05-03 17:02:53 +02:00
<?php
2013-05-16 03:16:56 +02:00
/**
* PHPCI - Continuous Integration for PHP
*
2014-05-12 18:26:40 +02:00
* @copyright Copyright 2014, Block 8 Limited.
* @license https://github.com/Block8/PHPCI/blob/master/LICENSE.md
* @link https://www.phptesting.org/
2013-05-16 03:16:56 +02:00
*/
2013-05-03 17:02:53 +02:00
session_set_cookie_params(43200); // Set session cookie to last 12 hours.
2013-05-10 17:25:51 +02:00
session_start();
require_once(__DIR__ . '/../bootstrap.php');
2013-05-03 17:02:53 +02:00
2015-07-19 20:09:27 +02:00
/** @var PHPCI\Application */
2015-05-31 10:33:27 +02:00
$app = $container->get('application');
print $app->handleRequest();