Skip to content

Commit

Permalink
Merge pull request #79 from FriendsOfSymfony1/fix/update-composer-travis
Browse files Browse the repository at this point in the history
Test on PHP 7.4
  • Loading branch information
j0k3r authored Jun 8, 2020
2 parents 735c427 + c43f459 commit ebcfdbb
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 24 deletions.
8 changes: 4 additions & 4 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/.gitattributes export-ignore
/.gitignore export-ignore
/tests export-ignore
/sandbox export-ignore
/build.xml export-ignore
/build.properties.dev export-ignore
/.travis.yml export-ignore
/build.properties.dev export-ignore
/build.xml export-ignore
/tests export-ignore
/tools export-ignore
50 changes: 30 additions & 20 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,35 @@
sudo: false
os: linux
dist: xenial
language: php
dist: trusty

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

cache:
directories:
- $HOME/.composer/cache

jobs:
fast_finish: true
allow_failures:
- php: nightly
include:
- php: 5.3
dist: precise
- php: 5.4
dist: precise
- php: 5.5
dist: trusty
- php: 5.6
dist: trusty

matrix:
include:
- php: "5.3"
dist: precise
fast_finish: true
allow_failures:
- php: nightly
- php: hhvm
install:
- composer install --prefer-dist --no-progress --no-suggest -o

script:
- php -dshort_open_tag=Off -dmagic_quotes_gpc=Off tests/index.php
- php -dshort_open_tag=Off -dmagic_quotes_gpc=Off tests/index.php

0 comments on commit ebcfdbb

Please sign in to comment.