mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-19 23:36:13 +02:00

[TASK] Allow PHP up to 7.2.x

Also remove the dependency on the phpunit extension.
This commit is contained in:
Oliver Klee 2018-01-10 21:41:41 +01:00
parent 617ef35c8f
commit 99277a3cb4
3 changed files with 3 additions and 2 deletions

View file

@ -11,6 +11,7 @@ matrix:
include:
- php: 7.0
- php: 7.1
- php: 7.2
install:
- composer install

View file

@ -26,7 +26,7 @@
"source": "https://github.com/oliverklee/tea"
},
"require": {
"php": "~7.0.0 || ~7.1.0",
"php": "~7.0.0 || ~7.1.0 || ~7.2.0",
"typo3/cms-core": "^7.6 || ^8.7"
},
"require-dev": {

View file

@ -10,8 +10,8 @@ $EM_CONF[$_EXTKEY] = [
'version' => '2.0.x-dev',
'constraints' => [
'depends' => [
'php' => '7.0.0-7.2.99',
'typo3' => '7.6.0-8.7.99',
'phpunit' => '4.0.0-5.9.99',
],
],
];