| 
<?php
 /*
 * This file is part of the Linkify library.
 *
 * (c) University of Cambridge
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
 
 if (!$loader = @include __DIR__ . '/../vendor/autoload.php') {
 echo <<<EOM
 You must set up the project dependencies by running the following commands:
 
 curl -s http://getcomposer.org/installer | php
 php composer.phar install
 
 EOM;
 
 exit(1);
 }
 
 $loader->add('Misd\Linkify\Test', __DIR__);
 
 |