PHP Classes

File: lib/acme/foo-bundle/Tests/bootstrap.php

Recommend this page to a friend!
  Classes of Manolo Salsas   Symfony Create Bundle Skeleton   lib/acme/foo-bundle/Tests/bootstrap.php   Download  
File: lib/acme/foo-bundle/Tests/bootstrap.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Symfony Create Bundle Skeleton
Application to create reusable Symfony Bundles
Author: By
Last change:
Date: 4 years ago
Size: 309 bytes
 

Contents

Class file image Download
<?php

if (!($loader = @include __DIR__.'/../vendor/autoload.php')) {
    echo <<<'EOT'
You need to install the project dependencies using Composer:
$ wget http://getcomposer.org/composer.phar
OR
$ curl -s https://getcomposer.org/installer | php
$ php composer.phar install --dev
$ phpunit
EOT;
    exit(
1);
}