Skip to content

Commit 1f0923f

Browse files
committed
Replace Buzz with Guzzle
1 parent 0ef040f commit 1f0923f

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

phpunit.xml.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phpunit backupGlobals="false"
33
backupStaticAttributes="false"
4-
bootstrap="vendor/autoload.php"
4+
bootstrap="tests/bootstrap.php"
55
colors="true"
66
convertErrorsToExceptions="true"
77
convertNoticesToExceptions="true"

tests/bootstrap.php

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?php
2+
3+
error_reporting(E_ALL | E_STRICT);
4+
5+
// include the composer autoloader and add our tests directory
6+
$autoloader = require __DIR__.'/../vendor/autoload.php';
7+
$autoloader->add('Omnipay', __DIR__);

0 commit comments

Comments
 (0)