Skip to content

Commit 33f615c

Browse files
author
Konstantinos Christofilos
committed
Merge branch 'master' into subscriptions
2 parents daad8d6 + 1b55399 commit 33f615c

File tree

7 files changed

+104
-1045
lines changed

7 files changed

+104
-1045
lines changed

.gitignore

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
.idea/*
2-
vendor/*
3-
public/*
1+
composer.lock
2+
vendor/

.travis.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
language: php
22

3+
sudo: false
4+
35
php:
46
- 5.3
57
- 5.4
@@ -11,13 +13,16 @@ php:
1113
matrix:
1214
allow_failures:
1315
- php: 7.0
16+
include:
17+
- php: 5.3
18+
env: 'COMPOSER_FLAGS="--prefer-stable --prefer-lowest"'
1419

1520
before_script:
1621
- travis_retry composer self-update
1722
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-source
1823

1924
script:
20-
- phpunit --coverage-text --coverage-clover=coverage.clover
25+
- php vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover
2126

2227
after_script:
2328
- php vendor/bin/ocular code-coverage:upload --format=php-clover coverage.clover

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
},
3333
"require": {
3434
"omnipay/common": "~2.0",
35-
"braintree/braintree_php": "^2.0"
35+
"braintree/braintree_php": "^2.39|^3.0"
3636
},
3737
"require-dev": {
3838
"omnipay/tests": "~2.0"

0 commit comments

Comments
 (0)