diff --git a/.travis.yml b/.travis.yml index 6dd21b2..80cf5fb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,19 +1,19 @@ language: php -php: - - 5.3 - - 5.4 - - 5.5 - - 5.6 - - hhvm - install: - travis_retry composer install --no-interaction --prefer-source script: - vendor/bin/phpunit -matrix: - allow_failures: - - php: hhvm +jobs: + include: + - php: 5.3 + dist: precise + - php: 5.4 + dist: trusty + - php: 5.5 + dist: trusty + - php: 5.6 + dist: xenial fast_finish: true diff --git a/test/Unit/PasswordVerifyTest.php b/test/Unit/PasswordVerifyTest.php index 9f67bb9..35c3642 100644 --- a/test/Unit/PasswordVerifyTest.php +++ b/test/Unit/PasswordVerifyTest.php @@ -26,4 +26,4 @@ public function testInValidHash() { $this->assertFalse(password_verify('rasmuslerdorf', '$2a$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hj')); } -} \ No newline at end of file +}