Skip to content

Commit d5dcd15

Browse files
committed
Travis update to perform composer install
1 parent d761888 commit d5dcd15

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@ php:
33
- 5.6
44
- 7.2
55
- 7.3
6+
install: composer install
67
script: phpunit test/*.php
78
dist: trusty

test/GatewayTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* vim: ts=4 sw=4 sts=4 noet
55
* @package Gateway Tests
66
*/
7-
7+
include "vendor/autoload.php";
88
/**
99
* The gateway URL to test against
1010
*/

test/PurchaseRequestTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33

44
use function PHPUnit\Framework\assertEquals;
55

6+
include "vendor/autoload.php";
7+
68
class PurchaseRequestTest extends PHPUnit\Framework\TestCase
79
{
810
public function test_error_checking_amount()

0 commit comments

Comments
 (0)