#dist: trusty language: php php: - '7.0' - '7.1' # - hhvm services: - mysql before_install: - mysql -e 'CREATE DATABASE IF NOT EXISTS phpvms;' before_script: - cp .env.travis .env - composer self-update - composer install --no-interaction script: - php artisan database:create --reset - vendor/bin/phpunit --debug --verbose --testdox tests