1
0
mirror of https://github.com/flarum/core.git synced 2025-08-06 08:27:42 +02:00

Updated PHP requirement to 7.2

This commit is contained in:
Alexander Skvortsov
2020-02-20 00:11:49 -05:00
parent eaf1767008
commit a01c513d8e
3 changed files with 3 additions and 9 deletions

View File

@@ -8,7 +8,7 @@ jobs:
strategy:
matrix:
php: [7.1, 7.2, 7.3, 7.4]
php: [7.2, 7.3, 7.4]
service: ['mysql:5.7', mariadb]
prefix: ['', flarum_]
@@ -21,12 +21,6 @@ jobs:
prefixStr: (prefix)
exclude:
- php: 7.1
service: 'mysql:5.7'
prefix: flarum_
- php: 7.1
service: mariadb
prefix: flarum_
- php: 7.2
service: 'mysql:5.7'
prefix: flarum_

View File

@@ -24,7 +24,7 @@
"docs": "https://flarum.org/docs/"
},
"require": {
"php": ">=7.1",
"php": ">=7.2",
"axy/sourcemap": "^0.1.4",
"components/font-awesome": "5.9.*",
"dflydev/fig-cookies": "^1.0.2",

View File

@@ -87,7 +87,7 @@ class Installation
public function prerequisites(): Prerequisite\PrerequisiteInterface
{
return new Prerequisite\Composite(
new Prerequisite\PhpVersion('7.1.0'),
new Prerequisite\PhpVersion('7.2.0'),
new Prerequisite\PhpExtensions([
'dom',
'gd',