mirror of
https://github.com/laravel/valet.git
synced 2026-02-05 16:40:05 +01:00
* Allows for valet to run under PHP 5.5 as well. Add checks for php55 to the mix. * Allows for valet to run under PHP 5.5 as well. Add checks for php55 to the mix. * Update .travis.yml * Update PhpFpm.php * Add tests for php55
24 lines
557 B
YAML
24 lines
557 B
YAML
language: php
|
|
|
|
php:
|
|
- 5.5
|
|
- 5.6
|
|
- 7.0
|
|
|
|
env:
|
|
global:
|
|
- setup=basic
|
|
- APP_ENV=testing
|
|
|
|
sudo: false
|
|
|
|
before_install:
|
|
- travis_retry composer self-update
|
|
|
|
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
|