Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update .travis.yml to use Precise/Xenial distributions #109

Open
wants to merge 12 commits into
base: master
Choose a base branch
from
20 changes: 10 additions & 10 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion test/Unit/PasswordVerifyTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ public function testInValidHash() {
$this->assertFalse(password_verify('rasmuslerdorf', '$2a$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hj'));
}

}
}