Skip to content

Commit 63dc25f

Browse files
authored
Merge pull request #82 from chrisryan/remove-old-version
Remove Php 5.4 and 5.5
2 parents 2a1788a + d69b5c4 commit 63dc25f

File tree

5 files changed

+725
-314
lines changed

5 files changed

+725
-314
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
/coverage/
22
/vendor/
3+
/clover.xml

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
language: php
22
php:
3+
- 7.0
34
- 5.6
4-
- 5.5
5-
- 5.4
65
script: ./build.php
76
after_script: ./vendor/bin/coveralls -v

build.php

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

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@
2121
],
2222
"license": "MIT",
2323
"require": {
24-
"php": "~5.4",
24+
"php": "~5.6 || ~7.0",
2525
"squizlabs/php_codesniffer": "~1.4.8"
2626
},
2727
"require-dev": {
28-
"phpunit/phpunit": "~4.1",
28+
"phpunit/phpunit": "~5.0",
2929
"satooshi/php-coveralls": "~0.6.1"
3030
}
3131
}

0 commit comments

Comments
 (0)