PHP Classes

File: test/bootstrap.php

Recommend this page to a friend!
  Classes of Fabian Schmengler   PHP PDFBox   test/bootstrap.php   Download  
File: test/bootstrap.php
Role: Auxiliary script
Content type: text/plain
Description: Unit test script
Class: PHP PDFBox
Extract text from PDF documents using PDFBox tool
Author: By
Last change:
Date: 9 years ago
Size: 295 bytes
 

Contents

Class file image Download
<?php

if (!($loader = @include __DIR__ . '/../vendor/autoload.php')) {
    die(<<<EOT
You need to install the project dependencies using Composer:
$ curl -sS https://getcomposer.org/installer | php
$ php composer.phar install --dev
$ phpunit

EOT
    );
}

$loader->add('SGH\PdfBox', __DIR__);