TASK: Allow PHP7 tests to run

* Ignore platform-reqs of composer to allow installation of TYPO3 CMS
  6.x with newer PHP Versions.
* Don't make 6.2 version fix.
This commit is contained in:
Daniel Siepmann 2017-05-11 09:51:14 +02:00
parent 2a1d4f34e4
commit 0ff8ffed84
Signed by: Daniel Siepmann
GPG key ID: 33D6629915560EF4

View file

@ -3,7 +3,7 @@ current_dir := $(dir $(mkfile_path))
TYPO3_WEB_DIR := $(current_dir).Build/Web
# Allow different versions on travis
TYPO3_VERSION ?= ~6.2.19
TYPO3_VERSION ?= ~6.2
typo3DatabaseName ?= "searchcore_test"
typo3DatabaseUsername ?= "dev"
typo3DatabasePassword ?= "dev"
@ -11,7 +11,7 @@ typo3DatabaseHost ?= "127.0.0.1"
.PHONY: install
install: clean
COMPOSER_PROCESS_TIMEOUT=1000 composer require -vv --dev --prefer-source typo3/cms="$(TYPO3_VERSION)"
COMPOSER_PROCESS_TIMEOUT=1000 composer require -vv --dev --prefer-source --ignore-platform-reqs typo3/cms="$(TYPO3_VERSION)"
git checkout composer.json
functionalTests: