Skip to content

Commit

Permalink
🔧 Default to PHP 8.2, add PHP 8.3 support (#1514)
Browse files Browse the repository at this point in the history
* 🔧 Default to PHP 8.2

* 🔧 Add PHP 8.3 support
  • Loading branch information
retlehs authored Apr 19, 2024
1 parent 0b1fff7 commit d0c75a9
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
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

0 comments on commit d0c75a9

Please sign in to comment.