Add support for PHP 8.1

Tested and verified working.
This commit is contained in:
Chris Deeming 2021-11-27 14:08:33 +00:00 committed by GitHub
parent 7c820847fe
commit 4db29a4139
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -16,6 +16,10 @@
- name: Enable remi repo for PHP 8.0.
set_fact: php_enablerepo="remi,remi-php80"
when: php_version == "8.0"
- name: Enable remi repo for PHP 8.1.
set_fact: php_enablerepo="remi,remi-php81"
when: php_version == "8.1"
# See: https://github.com/ansible/ansible/issues/64852
- block: