Skip to content

Commit

Permalink
Merge pull request #1 from chrisryan/master
Browse files Browse the repository at this point in the history
Update minimum versions
  • Loading branch information
chadicus committed May 24, 2016
2 parents ae6bf07 + 284c62f commit 177cbbb
Show file tree
Hide file tree
Showing 5 changed files with 413 additions and 151 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
/coverage/
/vendor/
/clover.xml
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
sudo: false
language: php
php:
- 5.4
- 5.5
- 5.6
- 7
- hhvm
Expand Down
2 changes: 1 addition & 1 deletion build.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
$phpunitConfiguration = PHPUnit_Util_Configuration::getInstance(__DIR__ . '/phpunit.xml');
$phpunitArguments = ['coverageHtml' => __DIR__ . '/coverage', 'configuration' => $phpunitConfiguration];
$testRunner = new PHPUnit_TextUI_TestRunner();
$result = $testRunner->doRun($phpunitConfiguration->getTestSuiteConfiguration(), $phpunitArguments);
$result = $testRunner->doRun($phpunitConfiguration->getTestSuiteConfiguration(), $phpunitArguments, false);
if (!$result->wasSuccessful()) {
exit(1);
}
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@
],
"license": "MIT",
"require": {
"php": "~5.4 || ~7.0"
"php": "~5.6 || ~7.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"phpunit/phpunit": "~5.0",
"satooshi/php-coveralls": "~0.6.1",
"squizlabs/php_codesniffer": "~2.0"
},
Expand Down
Loading

0 comments on commit 177cbbb

Please sign in to comment.