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

[WIP] Test on PHP 7.4 Stable #74

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 21 additions & 17 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
language: php
dist: trusty
sudo: false

cache:
directories:
Expand All @@ -10,25 +8,31 @@ cache:
git:
depth: 5

php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3
- 7.4snapshot
- nightly

matrix:
include:
- dist: precise
php: 5.3
- dist: precise
php: 5.3
- dist: trusty
php: 5.4
- dist: trusty
php: 5.5
- dist: xenial
php: 5.6
- dist: xenial
php: 7.0
- dist: bionic
php: 7.1
- dist: bionic
php: 7.2
- dist: bionic
php: 7.3
- dist: bionic
php: 7.4
- dist: bionic
php: nightly
fast_finish: true
allow_failures:
- php: nightly
- php: 7.4snapshot
- php: nightly

before_script:
- composer install --no-interaction --no-progress --prefer-dist --ansi
Expand Down