Skip to content

Commit b7e3137

Browse files
author
DKravtsov
committed
Php 8.3, MySQL 8.2, updated composer dependencies.
1 parent 5ed7be4 commit b7e3137

Some content is hidden

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

45 files changed

+4300
-3473
lines changed

.env.dev

+4-2
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

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
###> docker configuration ###
22
WEB_PORT_HTTP=80
33
WEB_PORT_SSL=443
4-
# MySQL version, recommend values: 8.1|8.0
5-
MYSQL_VERSION=8.1
64
# XDEBUG_CONFIG possible values: main|osx. Use main value for Linux and Windows, osx value for MacOS.
75
XDEBUG_CONFIG=main
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-ci

+4-2
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,12 @@
33
###> docker configuration ###
44
WEB_PORT_HTTP=80
55
WEB_PORT_SSL=443
6-
# MySQL version, recommend values: 8.1|8.0
7-
MYSQL_VERSION=8.1
86
# XDEBUG_CONFIG possible values: main|osx. Use main value for Linux and Windows, osx value for MacOS.
97
XDEBUG_CONFIG=main
8+
# Sometimes we need to use different xdebug versions, list of versions can be found here - https://pecl.php.net/package/xdebug
9+
XDEBUG_VERSION=3.3.1
10+
# MySQL version, recommend values: 8.2|8.1|8.0
11+
MYSQL_VERSION=8.2
1012
# 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
1113
INNODB_USE_NATIVE_AIO=1
1214
# 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

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
# with:
6767
# ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit
6868
# fetch-depth: 0 # a full history is required for pull request analysis
69-
# php-version: '8.2'
69+
# php-version: '8.3'
7070
# - name: 'Install dependencies'
7171
# run: COMPOSER_MEMORY_LIMIT=-1 composer install
7272
# - name: 'Download coverage data for Qodana'

.idea/codeception.xml

+4-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/htdocs.iml

+8-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)