1
0
mirror of https://github.com/laravel/valet.git synced 2026-02-06 16:50:09 +01:00
Files
laravel-valet/.travis.yml
Dries Vints 8f03204b61 Disable xdebug
This should speedup builds a bit and makes it more consistent with other Laravel libraries.
2018-11-26 12:31:59 -05:00

32 lines
676 B
YAML

language: php
php:
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3
- nightly
env:
global:
- setup=basic
- APP_ENV=testing
sudo: false
before_install:
- phpenv config-rm xdebug.ini || true
- travis_retry composer self-update
cache:
directories:
- $HOME/.composer/cache
install:
- if [[ $setup = 'basic' ]]; then travis_retry composer install --no-interaction --prefer-dist; fi
- if [[ $setup = 'stable' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-stable; fi
- if [[ $setup = 'lowest' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-lowest --prefer-stable; fi
script: vendor/bin/phpunit