mirror of
https://github.com/devfake/flox.git
synced 2024-11-15 14:42:31 +01:00
7059f55d44
* update webpack and vue * Update Laravel Fix tests. Swap native php error log with Laravel's (disable on testing). Remove Laravel Scout. * fluent routing and decrease dbal version * update to php 7.1
31 lines
435 B
YAML
31 lines
435 B
YAML
language: php
|
|
|
|
sudo: false
|
|
|
|
php:
|
|
- 7.1
|
|
|
|
env:
|
|
APP_ENV: testing
|
|
CACHE_DRIVER: array
|
|
SESSION_DRIVER: array
|
|
QUEUE_DRIVER: sync
|
|
APP_KEY: 16efa6c23c2e8c705826b0e66778fbe7
|
|
DB_CONNECTION: sqlite
|
|
|
|
cache:
|
|
directories:
|
|
- backend/vendor
|
|
|
|
services:
|
|
- mysql
|
|
|
|
script:
|
|
- (cd backend && vendor/bin/phpunit --testdox)
|
|
|
|
install:
|
|
- (cd backend && composer install --prefer-source --no-interaction)
|
|
|
|
notifications:
|
|
email: false
|