Skip to content

Commit ebcfdbb

Browse files
authored
Merge pull request #79 from FriendsOfSymfony1/fix/update-composer-travis
Test on PHP 7.4
2 parents 735c427 + c43f459 commit ebcfdbb

File tree

2 files changed

+34
-24
lines changed

2 files changed

+34
-24
lines changed

.gitattributes

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/.gitattributes export-ignore
22
/.gitignore export-ignore
3-
/tests export-ignore
4-
/sandbox export-ignore
5-
/build.xml export-ignore
6-
/build.properties.dev export-ignore
73
/.travis.yml export-ignore
4+
/build.properties.dev export-ignore
5+
/build.xml export-ignore
6+
/tests export-ignore
7+
/tools export-ignore

.travis.yml

+30-20
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,35 @@
1-
sudo: false
1+
os: linux
2+
dist: xenial
23
language: php
3-
dist: trusty
4+
45
php:
5-
- 5.4
6-
- 5.5
7-
- 5.6
8-
- 7.0
9-
- 7.1
10-
- 7.2
11-
- 7.3
12-
- hhvm
13-
- nightly
6+
- 7.0
7+
- 7.1
8+
- 7.2
9+
- 7.3
10+
- 7.4
11+
- nightly
12+
13+
cache:
14+
directories:
15+
- $HOME/.composer/cache
16+
17+
jobs:
18+
fast_finish: true
19+
allow_failures:
20+
- php: nightly
21+
include:
22+
- php: 5.3
23+
dist: precise
24+
- php: 5.4
25+
dist: precise
26+
- php: 5.5
27+
dist: trusty
28+
- php: 5.6
29+
dist: trusty
1430

15-
matrix:
16-
include:
17-
- php: "5.3"
18-
dist: precise
19-
fast_finish: true
20-
allow_failures:
21-
- php: nightly
22-
- php: hhvm
31+
install:
32+
- composer install --prefer-dist --no-progress --no-suggest -o
2333

2434
script:
25-
- php -dshort_open_tag=Off -dmagic_quotes_gpc=Off tests/index.php
35+
- php -dshort_open_tag=Off -dmagic_quotes_gpc=Off tests/index.php

0 commit comments

Comments
 (0)