Skip to content

Commit

Permalink
fix: remove deprecated php ini setting, fixes #82
Browse files Browse the repository at this point in the history
  • Loading branch information
shyim authored Jan 30, 2024
1 parent 9c00adb commit 66df723
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion frosh/devenv-meta/0.1/root/devenv.nix
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
''}
display_errors = On
error_reporting = E_ALL
assert.active = 0
zend.assertions = -1
opcache.memory_consumption = 256M
opcache.interned_strings_buffer = 20
zend.assertions = 0
Expand Down
2 changes: 1 addition & 1 deletion frosh/devenv-meta/0.2/root/devenv.nix
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
''}
display_errors = On
error_reporting = E_ALL
assert.active = 0
zend.assertions = -1
opcache.memory_consumption = 256M
opcache.interned_strings_buffer = 20
zend.assertions = 0
Expand Down
2 changes: 1 addition & 1 deletion frosh/devenv-meta/0.3/root/devenv.nix
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
''}
display_errors = On
error_reporting = E_ALL
assert.active = 0
zend.assertions = -1
opcache.memory_consumption = 256M
opcache.interned_strings_buffer = 20
zend.assertions = 0
Expand Down
2 changes: 1 addition & 1 deletion frosh/gitpod-meta/6.4/root/.gitpod.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ RUN sudo add-apt-repository ppa:ondrej/php -y && \
nodejs && \
sudo apt-get upgrade -y && \
echo "memory_limit=512M" > php.ini && \
echo "assert.active=0" >> php.ini && \
echo "zend.assertions=-1" >> php.ini && \
echo "opcache.interned_strings_buffer=20" >> php.ini && \
echo "zend.detect_unicode=0" >> php.ini && \
echo "realpath_cache_ttl=3600" >> php.ini && \
Expand Down
2 changes: 1 addition & 1 deletion shopware/paas-meta/6.4/.platform/applications.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
upload_max_filesize: 32M
post_max_size: 32M
memory_limit: 512M
"assert.active": 0
"zend.assertions": -1
"opcache.enable_file_override": 0
"opcache.interned_strings_buffer": 20
"opcache.validate_timestamps": 0
Expand Down

0 comments on commit 66df723

Please sign in to comment.