phpci/console

19 lines
429 B
Plaintext
Raw Permalink Normal View History

#!/usr/bin/env php
<?php
2013-05-16 03:16:56 +02:00
/**
* 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-05-16 03:16:56 +02:00
*/
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 */
2015-05-31 11:01:40 +02:00
$application = $container->get('console.application');
2014-12-04 12:31:21 +01:00
$application->run();