Skip to content
This repository was archived by the owner on Feb 13, 2023. It is now read-only.

Commit f6cb420

Browse files
committed
Update PHP role to latest version.
1 parent b00f7e0 commit f6cb420

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

provisioning/requirements.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ roles:
4343
- name: geerlingguy.nodejs
4444
version: 5.1.1
4545
- name: geerlingguy.php
46-
version: 4.3.0
46+
version: 4.3.1
4747
- name: geerlingguy.php-memcached
4848
version: 2.0.2
4949
- name: geerlingguy.php-mysql

provisioning/roles/geerlingguy.php/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@ By default, all the extra defaults below are applied through the php.ini include
114114
php_session_save_path: ''
115115
php_disable_functions: []
116116
php_precision: 14
117+
php_serialize_precision: "-1"
117118

118119
Various defaults for PHP. Only used if `php_use_managed_ini` is set to `true`.
119120

provisioning/roles/geerlingguy.php/defaults/main.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ php_output_buffering: "4096"
7777
php_short_open_tag: "Off"
7878
php_disable_functions: []
7979
php_precision: 14
80+
php_serialize_precision: "-1"
8081

8182
php_session_cookie_lifetime: 0
8283
php_session_gc_probability: 1

provisioning/roles/geerlingguy.php/templates/php.ini.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ zlib.output_compression = Off
1313

1414
implicit_flush = Off
1515
unserialize_callback_func =
16-
serialize_precision = 17
16+
serialize_precision = {{ php_serialize_precision }}
1717
disable_functions = {{ php_disable_functions|join(",") }}
1818
disable_classes =
1919

0 commit comments

Comments
 (0)