Skip to content

Commit d333e4d

Browse files
committed
Merge pull request #20 from chrisryan/master
Update minimum versions
2 parents 178214f + 8c6d741 commit d333e4d

4 files changed

Lines changed: 464 additions & 216 deletions

File tree

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
language: php
22
php:
3+
- 7.0
34
- 5.6
4-
- 5.5
5-
- 5.4
65
- hhvm
76
install: composer install
87
script: ./vendor/bin/phpunit --coverage-clover clover.xml

build.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
$phpunitConfiguration = PHPUnit_Util_Configuration::getInstance(__DIR__ . '/phpunit.xml');
2121
$phpunitArguments = ['coverageHtml' => __DIR__ . '/coverage', 'configuration' => $phpunitConfiguration];
2222
$testRunner = new PHPUnit_TextUI_TestRunner();
23-
$result = $testRunner->doRun($phpunitConfiguration->getTestSuiteConfiguration(), $phpunitArguments);
23+
$result = $testRunner->doRun($phpunitConfiguration->getTestSuiteConfiguration(), $phpunitArguments, false);
2424
if (!$result->wasSuccessful()) {
2525
exit(1);
2626
}

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
],
1212
"license": "MIT",
1313
"require": {
14-
"php": "~5.4 || ~7.0"
14+
"php": "~5.6 || ~7.0"
1515
},
1616
"require-dev": {
1717
"predis/predis": "~1.0",
18-
"phpunit/phpunit": "~4.0",
18+
"phpunit/phpunit": "~5.0",
1919
"satooshi/php-coveralls": "~0.6.1",
2020
"squizlabs/php_codesniffer": "~1.5"
2121
},

0 commit comments

Comments
 (0)