From bbcd5817f6707fc6e9900453f9b87ebc7c23ae20 Mon Sep 17 00:00:00 2001 From: Thomas Date: Fri, 21 Jan 2022 17:51:45 +0100 Subject: [PATCH 1/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 404ef673..782f0b2c 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Smarty is a template engine for PHP, facilitating the separation of presentation Read the [documentation](https://smarty-php.github.io/smarty/) to find out how to use it. ## Requirements -Smarty can be run with PHP 7.1 to PHP 8.0. +Smarty can be run with PHP 7.1 to PHP 8.1. ## Installation Smarty versions 3.1.11 or later can be installed with [Composer](https://getcomposer.org/). From 0f098802c6a4f329c4e92fb901b8576db946b5b5 Mon Sep 17 00:00:00 2001 From: Thomas Date: Fri, 21 Jan 2022 17:55:23 +0100 Subject: [PATCH 2/3] Create getting-started.md --- docs/getting-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting-started.md b/docs/getting-started.md index cd21b96a..de55ffe8 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -2,7 +2,7 @@ What is Smarty? ============== ## Requirements -Smarty can be run with PHP 7.1 to PHP 8.0. +Smarty can be run with PHP 7.1 to PHP 8.1. ## Installation Smarty versions 3.1.11 or later can be installed with [Composer](https://getcomposer.org/). From 6786623afb6bf5beb03ebf3cb5af9b81ec68e382 Mon Sep 17 00:00:00 2001 From: "Thomas A. Hirsch" Date: Fri, 21 Jan 2022 17:58:35 +0100 Subject: [PATCH 3/3] Activating jit compiler for ubuntu-latest + php 8.1 --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 21977687..e27b60bf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,6 +37,9 @@ jobs: - os: ubuntu-latest php-version: "8.0" compiler: jit + - os: ubuntu-latest + php-version: "8.1" + compiler: jit steps: - name: Checkout