1
0
Fork 0
composer/tests/bootstrap.php

19 lines
428 B
PHP
Raw Normal View History

<?php
/*
* This file is part of Composer.
*
* (c) Nils Adermann <naderman@naderman.de>
* Jordi Boggiano <j.boggiano@seld.be>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
error_reporting(E_ALL);
2012-03-15 12:14:02 +00:00
$loader = require __DIR__.'/../src/bootstrap.php';
$loader->add('Composer\Test', __DIR__);
2013-09-25 08:14:42 +00:00
require __DIR__.'/Composer/TestCase.php';