Skip to content

Commit 364a312

Browse files
author
DKravtsov
committedFeb 22, 2024
Php 8.3, MySQL 8.2, updated composer dependencies.
1 parent 2a86783 commit 364a312

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+4277
-3459
lines changed
 

‎.env.dev

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@ WEB_PORT_HTTP=80
33
WEB_PORT_SSL=443
44
# XDEBUG_CONFIG possible values: main|osx. Use main value for Linux and Windows, osx value for MacOS.
55
XDEBUG_CONFIG=main
6-
# MySQL version, recommend values: 8.1|8.0
7-
MYSQL_VERSION=8.1
6+
# Sometimes we need to use different xdebug versions, list of versions can be found here - https://pecl.php.net/package/xdebug
7+
XDEBUG_VERSION=3.3.1
8+
# MySQL version, recommend values: 8.2|8.1|8.0
9+
MYSQL_VERSION=8.2
810
# MySQL INNODB_USE_NATIVE_AIO possible values: 1|0. Set to 0 when AIO interface is not supported on OSX. https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_use_native_aio
911
INNODB_USE_NATIVE_AIO=1
1012
# Sometimes AWS MySQL RDS has SQL_MODE="NO_ENGINE_SUBSTITUTION" (https://github.com/awsdocs/amazon-rds-user-guide/issues/160) but MySQL default described here - https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_sql_mode

‎.env.test

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@ WEB_PORT_HTTP=80
33
WEB_PORT_SSL=443
44
# XDEBUG_CONFIG possible values: main|osx. Use main value for Linux and Windows, osx value for MacOS.
55
XDEBUG_CONFIG=main
6-
# MySQL version, recommend values: 8.1|8.0
7-
MYSQL_VERSION=8.1
6+
# Sometimes we need to use different xdebug versions, list of versions can be found here - https://pecl.php.net/package/xdebug
7+
XDEBUG_VERSION=3.3.1
8+
# MySQL version, recommend values: 8.2|8.1|8.0
9+
MYSQL_VERSION=8.2
810
# MySQL INNODB_USE_NATIVE_AIO possible values: 1|0. Set to 0 when AIO interface is not supported on OSX. https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_use_native_aio
911
INNODB_USE_NATIVE_AIO=1
1012
# Sometimes AWS MySQL RDS has SQL_MODE="NO_ENGINE_SUBSTITUTION" (https://github.com/awsdocs/amazon-rds-user-guide/issues/160) but MySQL default described here - https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_sql_mode

0 commit comments

Comments
 (0)
Please sign in to comment.