Skip to content

Commit b023674

Browse files
author
DKravtsov
committedApr 19, 2025·
Laravel 12. Updated composer dependencies, xdebug and phpcpd. MySQL 8.4.4.
1 parent b9b4a56 commit b023674

Some content is hidden

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

47 files changed

+4862
-3236
lines changed
 

‎.env.dev

+6-4
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ WEB_PORT_SSL=443
77
# XDEBUG_CONFIG possible values: main|osx. Use main value for Linux and Windows, osx value for MacOS.
88
XDEBUG_CONFIG=main
99
# Sometimes we need to use different xdebug versions, list of versions can be found here - https://pecl.php.net/package/xdebug
10-
XDEBUG_VERSION=3.4.0
10+
XDEBUG_VERSION=3.4.2
1111
###< XDebug docker configuration ###
1212

1313
###> MySQL docker configuration. ###
14-
# MySQL version, recommend values: 9.1.0|9.0.1|8.4.3|8.3.0|8.2.0|8.1.0|8.0.39
15-
MYSQL_VERSION=8.4.3
14+
# MySQL version, recommend values: 9.1.0|9.0.1|8.4.4|8.3.0|8.2.0|8.1.0|8.0.39
15+
MYSQL_VERSION=8.4.4
1616
# 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
1717
INNODB_USE_NATIVE_AIO=1
1818
# 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
@@ -35,6 +35,8 @@ APP_FAKER_LOCALE=en_US
3535
APP_MAINTENANCE_DRIVER=file
3636
APP_MAINTENANCE_STORE=database
3737

38+
PHP_CLI_SERVER_WORKERS=4
39+
3840
BCRYPT_ROUNDS=12
3941

4042
LOG_CHANNEL=stack
@@ -70,11 +72,11 @@ REDIS_PASSWORD=null
7072
REDIS_PORT=6379
7173

7274
MAIL_MAILER=smtp
75+
MAIL_SCHEME=null
7376
MAIL_HOST=mail
7477
MAIL_PORT=1025
7578
MAIL_USERNAME=null
7679
MAIL_PASSWORD=null
77-
MAIL_ENCRYPTION=null
7880
MAIL_FROM_ADDRESS="hello@example.com"
7981
MAIL_FROM_NAME="${APP_NAME}"
8082

‎.env.prod

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ WEB_PORT_SSL=443
44
###< Nginx docker configuration ###
55

66
###> MySQL docker configuration. ###
7-
# MySQL version, recommend values: 9.1.0|9.0.1|8.4.3|8.3.0|8.2.0|8.1.0|8.0.39
8-
MYSQL_VERSION=8.4.3
7+
# MySQL version, recommend values: 9.1.0|9.0.1|8.4.4|8.3.0|8.2.0|8.1.0|8.0.39
8+
MYSQL_VERSION=8.4.4
99
# 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
1010
INNODB_USE_NATIVE_AIO=1
1111
# 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
@@ -63,11 +63,11 @@ REDIS_PASSWORD=null
6363
REDIS_PORT=6379
6464

6565
MAIL_MAILER=smtp
66+
MAIL_SCHEME=null
6667
MAIL_HOST=mail
6768
MAIL_PORT=1025
6869
MAIL_USERNAME=null
6970
MAIL_PASSWORD=null
70-
MAIL_ENCRYPTION=null
7171
MAIL_FROM_ADDRESS=null
7272
MAIL_FROM_NAME="${APP_NAME}"
7373

0 commit comments

Comments
 (0)
Please sign in to comment.