Skip to content

Commit a8e272c

Browse files
authored
Merge pull request #215 from 15web/update-packages
Обновил пакеты, докер, убрал атрибут AsService
2 parents b57e4ba + c60fc74 commit a8e272c

File tree

84 files changed

+817
-1323
lines changed

Some content is hidden

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

84 files changed

+817
-1323
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
## Модули
88

99
Проект имеет модульную архитектуру, что позволяет каждый модуль реализовывать индивидуально.
10-
Модули разделены согласно своему контексту и должны иметь слабые связи между собой (cohesion).
10+
Модули разделены согласно своему контексту и должны иметь слабые связи между собой (low coupling).
1111

1212
Логика CRUD-модулей ограничена простыми операциями с данными, что упрощает их реализацию.
1313

backend/.env

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
# Real environment variables win over .env files.
1010
#
1111
# DO NOT DEFINE PRODUCTION SECRETS IN THIS FILE NOR IN ANY OTHER COMMITTED FILES.
12+
# https://symfony.com/doc/current/configuration/secrets.html
1213
#
1314
# Run "composer dump-env prod" to compile .env files for production use (requires symfony/flex >=1.2).
1415
# https://symfony.com/doc/current/best_practices.html#use-environment-variables-for-infrastructure-configuration

backend/.env.test

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,4 @@
22
KERNEL_CLASS='App\Infrastructure\Kernel'
33
APP_SECRET='$ecretf0rt3st'
44
SYMFONY_DEPRECATIONS_HELPER=999999
5-
PANTHER_APP_ENV=panther
6-
PANTHER_ERROR_SCREENSHOT_DIR=./var/error-screenshots
7-
85
HASHER_COST=4

backend/composer.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"phpstan/phpstan": "^2.1",
4848
"phpstan/phpstan-doctrine": "^2.0",
4949
"phpstan/phpstan-strict-rules": "^2.0",
50-
"phpunit/phpunit": "^11.2",
50+
"phpunit/phpunit": "^12.0",
5151
"rector/rector": "^2.0",
5252
"symfony/browser-kit": "^7.2",
5353
"symfony/css-selector": "^7.2",
@@ -76,7 +76,10 @@
7676
"autoload": {
7777
"psr-4": {
7878
"App\\": "src/"
79-
}
79+
},
80+
"exclude-from-classmap": [
81+
"src-dev/Tests/Rector/**/Fixture/**"
82+
]
8083
},
8184
"autoload-dev": {
8285
"psr-4": {

0 commit comments

Comments
 (0)