Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 8770189

Browse files
author
DKravtsov
committedApr 20, 2025·
Laravel 12. Updated composer dependencies, xdebug and phpcpd. MySQL 8.4.4.
1 parent 9cda7d9 commit 8770189

Some content is hidden

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

50 files changed

+4876
-3241
lines changed
 

‎.circleci/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
make phpmd
6565
6666
- run:
67-
name: Run PHP copy past detector
67+
name: Run PHP copy paste detector
6868
command: |
6969
make phpcpd
7070

‎.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

0 commit comments

Comments
 (0)
Please sign in to comment.