diff --git a/.gitignore b/.gitignore index 116f35f..c7b763f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ vendor composer.lock -.idea \ No newline at end of file +.idea +*.cache diff --git a/.travis.yml b/.travis.yml index ebc172c..35e2bb8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,11 +1,9 @@ language: php -dist: trusty -sudo: true php: - - '7.0' - '7.1' - '7.2' - '7.3' + - '7.4' - nightly matrix: allow_failures: diff --git a/composer.json b/composer.json index ba3e78d..d7714a1 100644 --- a/composer.json +++ b/composer.json @@ -10,10 +10,10 @@ } ], "require": { - "php": ">=7.0.0" + "php": ">=7.1.0" }, "require-dev": { - "phpunit/phpunit": "^6.5 || ^7.0", + "phpunit/phpunit": "^7.0 || ^8.0", "php-coveralls/php-coveralls": "^2.1" }, "autoload": { @@ -23,7 +23,7 @@ }, "autoload-dev": { "psr-4": { - "DivineOmega\\Distance\\Tests\\": "tests/" + "DivineOmega\\Distance\\Tests\\": "tests/Unit/" } } }