friendica/.travis.yml

19 lines
310 B
YAML
Raw Normal View History

2018-04-09 15:49:23 -04:00
---
language: php
2018-04-22 08:56:59 -04:00
## Friendica supports PHP version >= 5.6
php:
2018-04-23 01:42:48 -04:00
- 5.6
- 7.0
- 7.1
- 7.2
2018-04-22 08:56:59 -04:00
2018-04-09 15:23:41 -04:00
services:
- mysql
env:
- MYSQL_HOST=localhost MYSQL_PORT=3306 MYSQL_USERNAME=travis MYSQL_PASSWORD= MYSQL_DATABASE=test
2018-04-09 15:23:41 -04:00
install:
- composer install
before_script:
- mysql -e 'CREATE DATABASE IF NOT EXISTS test;'