diff --git a/.gitattributes b/.gitattributes index 047ced0..64ab6e0 100644 --- a/.gitattributes +++ b/.gitattributes @@ -2,6 +2,6 @@ /.gitignore export-ignore /.travis.yml export-ignore /examples export-ignore -/phpunit.xml export-ignore -/phpunit-legacy.xml export-ignore +/phpunit.xml.dist export-ignore +/phpunit.xml.legacy export-ignore /tests export-ignore diff --git a/.travis.yml b/.travis.yml index 11c9492..52e210e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -29,4 +29,4 @@ install: script: - if [[ "$TRAVIS_PHP_VERSION" > "7.2" ]]; then vendor/bin/phpunit --coverage-text; fi - - if [[ "$TRAVIS_PHP_VERSION" < "7.3" ]]; then vendor/bin/phpunit --coverage-text -c phpunit-legacy.xml; fi + - if [[ "$TRAVIS_PHP_VERSION" < "7.3" ]]; then vendor/bin/phpunit --coverage-text -c phpunit.xml.legacy; fi diff --git a/phpunit.xml b/phpunit.xml.dist similarity index 100% rename from phpunit.xml rename to phpunit.xml.dist diff --git a/phpunit-legacy.xml b/phpunit.xml.legacy similarity index 100% rename from phpunit-legacy.xml rename to phpunit.xml.legacy