PHP Classes

File: tests/bootstrap.php

Recommend this page to a friend!
  Classes of Nahid Bin Azhar   PHP Link to HTML   tests/bootstrap.php   Download  
File: tests/bootstrap.php
Role: Auxiliary script
Content type: text/plain
Description: Tests bootstrap script
Class: PHP Link to HTML
Convert URLs and email addresses into HTML links
Author: By
Last change:
Date: 4 years ago
Size: 528 bytes
 

Contents

Class file image Download
<?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__);