summaryrefslogtreecommitdiffstats
path: root/tests/autoload.php
diff options
context:
space:
mode:
authorJérémy DECOOL <jdecool@gmail.com>2015-03-19 09:33:57 +0100
committerJérémy DECOOL <jdecool@gmail.com>2015-03-19 09:33:57 +0100
commit540918dc2fe27d6d96a46507fcbd82b888dac1a6 (patch)
treeb7481c79478e4208867caf6e96da716dd01ba4dc /tests/autoload.php
parent5d4d5e80c6c42bf26d232536ffb4205f4326d08e (diff)
parent6d6074acebe89a4caa2b06197ea735d4a979dacc (diff)
downloadImageWorkshop-540918dc2fe27d6d96a46507fcbd82b888dac1a6.zip
ImageWorkshop-540918dc2fe27d6d96a46507fcbd82b888dac1a6.tar.gz
ImageWorkshop-540918dc2fe27d6d96a46507fcbd82b888dac1a6.tar.bz2
Merge pull request #65 from jdecool/php56-compatibility
Add PHP >= 5.5 compatibility
Diffstat (limited to 'tests/autoload.php')
-rw-r--r--tests/autoload.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/autoload.php b/tests/autoload.php
index 11f837e..b0dfbfd 100644
--- a/tests/autoload.php
+++ b/tests/autoload.php
@@ -1,7 +1,9 @@
<?php
+
require_once(__DIR__.'/../src/PHPImageWorkshop/Exception/ImageWorkshopBaseException.php');
require_once(__DIR__.'/../src/PHPImageWorkshop/Exception/ImageWorkshopException.php');
+require_once(__DIR__.'/../src/PHPImageWorkshop/Exif/ExifOrientations.php');
require_once(__DIR__.'/../src/PHPImageWorkshop/Core/Exception/ImageWorkshopLayerException.php');
require_once(__DIR__.'/../src/PHPImageWorkshop/Core/ImageWorkshopLib.php');
require_once(__DIR__.'/../src/PHPImageWorkshop/Core/ImageWorkshopLayer.php');
-require_once(__DIR__.'/../src/PHPImageWorkshop/ImageWorkshop.php'); \ No newline at end of file
+require_once(__DIR__.'/../src/PHPImageWorkshop/ImageWorkshop.php');