Skip to content

Commit a3b9458

Browse files
committed
Add support for PHP 7.2
1 parent 2759502 commit a3b9458

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ php:
44
- '5.6'
55
- '7.0'
66
- '7.1'
7+
- '7.2'
78
- hhvm
89
notifications:
910
email: false

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ This project includes tests which can be executed with PHPUnit.
6868

6969
- `./vendor/bin/phpunit`: runs all unit tests
7070

71-
PHPUnit is configured to generate coverage reports in a `coverage` folder under `test-results` in the root of the project. Overall test coverage can viewed by opening `test-results/coverage/index.html`. (N.B. These coverage reports are purposely excluded from source control.) Note that [Xdebug must be enabled](https://xdebug.org/docs/install) in order for code coverage to be generated.
71+
PHPUnit is configured to generate coverage reports in a `coverage` folder under `test-results` in the root of the project. (N.B. These coverage reports are purposely excluded from source control.) Note that [Xdebug must be enabled](https://xdebug.org/docs/install) in order for code coverage to be generated.
7272

7373
XML files are also generated for reporting test results and coverage on a CI server; again, those can be found under `test-results`.
7474

phpunit.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
</whitelist>
2424
</filter>
2525
<logging>
26-
<log type="coverage-html" target="test-results/coverage" lowUpperBound="35" highLowerBound="70"/>
2726
<log type="coverage-clover" target="test-results/coverage.xml"/>
2827
<log type="junit" target="test-results/junit.xml" logIncompleteSkipped="false"/>
2928
</logging>

0 commit comments

Comments
 (0)