Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/template-php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php_version: ["8.5-rc"]
php_version: ["8.5"]
os: ["", "alpine"]
with:
os: ${{ matrix.os }}
Expand Down
8 changes: 7 additions & 1 deletion src/php/common/php-extensions.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,12 @@ RUN <<'EOF'
echo 'Install Composer and PHP extensions'
[ -z "$DEBUG" ] || set -ex && set -e

# Update PEAR
if has-cmd pear; then
pear channel-update pear.php.net
pear upgrade --force || true
fi

# Set Composer default settings
env-default '# Environment variables for Composer'
env-default COMPOSER_ALLOW_XDEBUG '$(is-debug && echo 1 || echo 0)'
Expand Down Expand Up @@ -89,7 +95,6 @@ modules=(
# gnupg
# grpc
# http
igbinary
# imagick
# imap
# inotify
Expand Down Expand Up @@ -208,6 +213,7 @@ modules=(
# zmq
# zookeeper
# zstd
igbinary
)
phpaddmod "${modules[@]}" || true

Expand Down
2 changes: 1 addition & 1 deletion src/webapps/espocrm/espocrm.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ echo 'Configure EspoCRM'
[ -z "$DEBUG" ] || set -ex && set -e

# install zmq php extension
phpaddmod zmq
phpaddmod zmq || true

# enable preload to bring a significant performance boost
# see: https://docs.espocrm.com/administration/performance-tweaking/#preloading
Expand Down