Skip to content
This repository was archived by the owner on Feb 25, 2026. It is now read-only.

Commit 1194144

Browse files
author
Manuele Vaccari
committed
Fixed travis config and added php version
1 parent 61a264e commit 1194144

1 file changed

Lines changed: 9 additions & 6 deletions

File tree

.travis.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
language: php
22

3-
php:
4-
- 5.6
5-
- 7.0
6-
- 7.1
3+
sudo: false
4+
dist: trusty
5+
6+
cache:
7+
directories:
8+
- $HOME/.composer/cache/files
79

810
matrix:
911
fast_finish: true
@@ -14,14 +16,15 @@ matrix:
1416
# test the latest stable 3.x release
1517
- php: 5.6
1618
env: SYMFONY_VERSION=^3.0
19+
- php: 7.0
1720
# test the latest release (including beta releases)
1821
- php: 7.1
1922
env: DEPENDENCIES=beta
23+
- php: 7.2
2024

2125
before_script:
2226
- if [ "$DEPENDENCIES" = "beta" ]; then composer config minimum-stability beta; fi;
23-
- composer self-update
2427
- composer install
2528

2629
script:
27-
- vendor/bin/phpunit
30+
- phpunit

0 commit comments

Comments
 (0)