Add php8.3 support

This commit is contained in:
VirtuBox
2023-11-23 21:33:09 +01:00
parent c10e3b52c5
commit f699012b9b
8 changed files with 101 additions and 73 deletions

View File

@@ -157,6 +157,7 @@ class WOVar():
'php80': '8.0',
'php81': '8.1',
'php82': '8.2',
'php83': '8.3',
}
def generate_php_modules(version_prefix, version_number):
@@ -179,6 +180,7 @@ class WOVar():
wo_php80 = generate_php_modules('php80', '8.0')
wo_php81 = generate_php_modules('php81', '8.1')
wo_php82 = generate_php_modules('php82', '8.2')
wo_php83 = generate_php_modules('php83', '8.3')
wo_php_extra = ["graphviz"]