Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🔧 Default to PHP 8.2, add PHP 8.3 support #1514

Merged
merged 2 commits into from
Apr 19, 2024
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 group_vars/all/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apt_package_state: present
apt_security_package_state: latest
apt_dev_package_state: latest
composer_keep_updated: true
php_version: "8.1"
php_version: "8.2"
ntp_timezone: Etc/UTC
ntp_manage_config: true
www_root: /srv/www
Expand Down
18 changes: 18 additions & 0 deletions roles/php/vars/8.3.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
php_extensions_default:
php8.3-bcmath: "{{ apt_package_state }}"
php8.3-cli: "{{ apt_package_state }}"
php8.3-curl: "{{ apt_package_state }}"
php8.3-dev: "{{ apt_package_state }}"
php8.3-fpm: "{{ apt_package_state }}"
php8.3-imagick: "{{ apt_package_state }}"
php8.3-intl: "{{ apt_package_state }}"
php8.3-mbstring: "{{ apt_package_state }}"
php8.3-mysql: "{{ apt_package_state }}"
php8.3-xml: "{{ apt_package_state }}"
php8.3-xmlrpc: "{{ apt_package_state }}"
php8.3-zip: "{{ apt_package_state }}"

php_memcached_packages:
php8.3-memcached: "{{ apt_package_state }}"

php_xdebug_package: php8.3-xdebug
Loading