8000 Fixed issue with REDIS volumes, updated dependencies, refactoring · systemsdk/docker-symfony-api@182ba12 · GitHub
[go: up one dir, main page]

Skip to content

Commit 182ba12

Browse files
author
DKravtsov
committed
Fixed issue with REDIS volumes, updated dependencies, refactoring
1 parent d7c702d commit 182ba12

File tree

132 files changed

+1364
-1550
lines changed

Some content is hidden

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

132 files changed

+1364
-1550
lines changed

.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

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ endif
364364
phpinsights: ## Runs Php Insights analysis tool
365365
ifeq ($(INSIDE_DOCKER_CONTAINER), 1)
366366
@echo "\033[32mRunning PHP Insights\033[39m"
367-
@php -d error_reporting=0 ./vendor/bin/phpinsights analyse --no-interaction --min-quality=98 --min-complexity=85 --min-architecture=100 --min-style=100
367+
@php -d error_reporting=0 ./vendor/bin/phpinsights analyse --no-interaction --min-quality=95 --min-complexity=85 --min-architecture=100 --min-style=100
368368
else
369369
@make exec cmd="make phpinsights"
370370
endif

composer.json

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"Elasticsearch"
1515
],
1616
"homepage": "https://github.com/systemsdk/docker-symfony-api",
17-
"version": "v1.4.0",
17+
"version": "v1.4.1",
1818
"license": "MIT",
1919
"authors": [
2020
{
@@ -40,10 +40,10 @@
4040
"ext-pdo": "*",
4141
"ext-pdo_mysql": "*",
4242
"beberlei/doctrineextensions": "^1.3",
43-
"doctrine/annotations": "^1.13",
44-
"doctrine/doctrine-bundle": "^2.7",
43+
"doctrine/annotations": "^1.14",
44+
"doctrine/doctrine-bundle": "^2.8",
4545
"doctrine/doctrine-migrations-bundle": "^3.2",
46-
"doctrine/orm": "^2.13",
46+
"doctrine/orm": "^2.14",
4747
"dukecity/command-scheduler-bundle": "^5.0",
4848
"elasticsearch/elasticsearch": "^7.17",
4949
"gedmo/doctrine-extensions": "^3.10",
@@ -54,8 +54,7 @@
5454
"nelmio/api-doc-bundle": "^4.10",
5555
"nelmio/cors-bundle": "^2.2",
5656
"phpdocumentor/reflection-docblock": "^5.3",
57-
"ramsey/uuid-doctrine": "^1.8",
58-
"sensio/framework-extra-bundle": "^6.2",
57+
"ramsey/uuid-doctrine": "^2.0",
5958
"symfony/amqp-messenger": "6.2.*",
6059
"symfony/asset": "6.2.*",
6160
"symfony/config": "6.2.*",

0 commit comments

Comments
 (0)
0