diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index edc991289..d6d4c9c9d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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_ diff --git a/composer.json b/composer.json index 7ed3a9818..255866cee 100644 --- a/composer.json +++ b/composer.json @@ -14,8 +14,8 @@ "email": "franz@develophp.org" }, { - "name": "Daniel Klabbers", - "email": "daniel@klabbers.email" + "name": "Daniel Klabbers", + "email": "daniel@klabbers.email" } ], "support": { @@ -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", diff --git a/src/Install/Installation.php b/src/Install/Installation.php index 8ef92d6b7..3b14a3baa 100644 --- a/src/Install/Installation.php +++ b/src/Install/Installation.php @@ -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',