We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ef040f commit 1f0923fCopy full SHA for 1f0923f
phpunit.xml.dist
@@ -1,7 +1,7 @@
1
<?xml version="1.0" encoding="UTF-8"?>
2
<phpunit backupGlobals="false"
3
backupStaticAttributes="false"
4
- bootstrap="vendor/autoload.php"
+ bootstrap="tests/bootstrap.php"
5
colors="true"
6
convertErrorsToExceptions="true"
7
convertNoticesToExceptions="true"
tests/bootstrap.php
@@ -0,0 +1,7 @@
+<?php
+
+error_reporting(E_ALL | E_STRICT);
+// include the composer autoloader and add our tests directory
+$autoloader = require __DIR__.'/../vendor/autoload.php';
+$autoloader->add('Omnipay', __DIR__);
0 commit comments