Version 3 #1

Manually merged
timw4mail merged 47 commits from develop into master 2020-04-23 18:39:27 -04:00
2 changed files with 9 additions and 6 deletions
Showing only changes of commit 89ef2ae103 - Show all commits

View File

@ -9,8 +9,10 @@ arch:
language: php language: php
services: services:
- mysql - if: arch = amd64
- postgresql - [ mysql, postgresql ]
- if: arch != amd64
- mysql
php: php:
- 7.2 - 7.2
@ -19,10 +21,11 @@ php:
- nightly - nightly
before_script: before_script:
- psql -c 'DROP DATABASE IF EXISTS test;' -U postgres - if: arch = amd64
- psql -c 'create database test;' -U postgres - psql -c 'DROP DATABASE IF EXISTS test;' -U postgres
- psql -c 'create database test;' -U postgres
- mysql -e 'create database IF NOT EXISTS test;' - mysql -e 'create database IF NOT EXISTS test;'
- composer install - composer install --ignore-platform-reqs
script: script:
- mkdir -p build/logs - mkdir -p build/logs

View File

@ -20,7 +20,7 @@
"role": "Developer" "role": "Developer"
}], }],
"require": { "require": {
"php": "^7.2 || 8", "php": "^7.2",
"ext-pdo": "*" "ext-pdo": "*"
}, },
"require-dev": { "require-dev": {