17 lines
273 B
YAML
17 lines
273 B
YAML
language: php
|
|
|
|
php:
|
|
- '5.6'
|
|
- '7.0'
|
|
|
|
services:
|
|
- postgresql
|
|
|
|
install:
|
|
- composer install
|
|
|
|
before_script:
|
|
- psql -c 'create database travis_ci_test;' -U postgres
|
|
- cp app/config/config_travis.yml app/config/config_test.yml
|
|
|
|
script: bin/phpunit --verbose -c app
|