phpci/daemonise

19 lines
428 B
Plaintext
Raw Normal View History

#!/usr/bin/env 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/
*/
2013-10-10 02:01:06 +02:00
define('PHPCI_IS_CONSOLE', true);
require('bootstrap.php');
2015-05-31 15:06:45 +02:00
/** @var \Symfony\Component\Console\Application */
$application = $container->get('daemon.application');
$application->run();