mirror of
https://github.com/maximebf/php-debugbar.git
synced 2025-01-17 05:18:32 +01:00
34 lines
529 B
YAML
34 lines
529 B
YAML
language: php
|
|
|
|
php:
|
|
- 7.1
|
|
- 7.2
|
|
- 7.3
|
|
- 7.4snapshot
|
|
|
|
# This triggers builds to run on the new TravisCI infrastructure.
|
|
# See: http://docs.travis-ci.com/user/workers/container-based-infrastructure/
|
|
sudo: false
|
|
|
|
## Cache composer
|
|
cache:
|
|
directories:
|
|
- $HOME/.composer/cache
|
|
|
|
sudo: false
|
|
|
|
## Cache composer
|
|
cache:
|
|
directories:
|
|
- $HOME/.composer/cache
|
|
|
|
matrix:
|
|
allow_failures:
|
|
- php: 7.4snapshot
|
|
|
|
install:
|
|
- travis_retry composer install --no-interaction --prefer-dist
|
|
|
|
script:
|
|
- vendor/bin/phpunit
|