We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be26798 commit fcb1ba9Copy full SHA for fcb1ba9
CHANGELOG.md
@@ -6,6 +6,8 @@ This file is used to list changes made in each version of the PHP cookbook.
6
7
Standardise files with files in sous-chefs/repo-management
8
9
+- Correct the php version for rhel9. Visible in the fpm pool
10
+
11
## 10.0.2 - *2024-05-23*
12
13
- Fix typos in documentation for `php_install` and `php_ini` resources
libraries/helpers.rb
@@ -147,7 +147,11 @@ def php_pecl
147
def php_version
148
case node['platform_family']
149
when 'rhel'
150
- '7.2'
+ if node['platform_version'].to_i >= 9
151
+ '8.0'
152
+ else
153
+ '7.2'
154
+ end
155
when 'amazon'
156
'8.2'
157
when 'debian'
0 commit comments