Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 46ce1b8

Browse files
author
DKravtsov
committed
Updated composer dependencies, refactoring.
1 parent 267e26b commit 46ce1b8

File tree

145 files changed

+2704
-2334
lines changed

Some content is hidden

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

145 files changed

+2704
-2334
lines changed

‎.dockerignore

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,19 @@
99
/.env.*.local
1010
/.env.local.php
1111
/public/bundles/
12+
/vendor/
13+
###< symfony/framework-bundle ###
14+
15+
### Other data
1216
/var/mysql-data
1317
/var/rabbitmq
1418
/var/elasticsearch-data
15-
/vendor/
16-
###< symfony/framework-bundle ###
19+
/var/redis
1720

1821
### Vendor bin dependencies
1922
/tools/*/vendor/
23+
.phpunit.cache
24+
.phpunit.result.cache
2025

2126
### Docker
2227
Dockerfile

‎.env

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,10 @@ TRUSTED_PROXIES=127.0.0.1,REMOTE_ADDR
3737

3838
###> doctrine/doctrine-bundle ###
3939
# Format described at https://www.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/configuration.html#connecting-using-a-url
40-
# For an SQLite database, use: "sqlite:///%kernel.project_dir%/var/data.db"
41-
# For a PostgreSQL database, use: "postgresql://db_user:db_password@127.0.0.1:5432/db_name?serverVersion=11&charset=utf8"
4240
# IMPORTANT: You MUST configure your server version, either here or in config/packages/doctrine.yaml
41+
#
42+
# DATABASE_URL="sqlite:///%kernel.project_dir%/var/data.db"
43+
# DATABASE_URL="postgresql://app:!ChangeMe!@127.0.0.1:5432/app?serverVersion=15&charset=utf8"
4344
DATABASE_URL=mysql://root:secret@mysql:3306/symfony
4445
###< doctrine/doctrine-bundle ###
4546

@@ -96,6 +97,6 @@ REQUEST_LOG_IGNORED_ROUTES='["", "/", "/api", "/api/", "/api/health", "/api/vers
9697

9798
###> symfony/lock ###
9899
# Choose one of the stores below
99-
# LOCK_DSN=redis://localhost
100-
LOCK_DSN=semaphore
100+
# postgresql+advisory://db_user:db_password@localhost/db_name
101+
LOCK_DSN=redis://redis:6379
101102
###< symfony/lock ###

‎.env.test

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,7 @@ SYMFONY_DEPRECATIONS_HELPER=999999
88
###> doctrine/doctrine-bundle ###
99
DATABASE_URL=mysql://root:secret@mysql:3306/symfony_testing
1010
###< doctrine/doctrine-bundle ###
11+
12+
###> symfony/lock ###
13+
LOCK_DSN=flock
14+
###< symfony/lock ###

‎composer-unused.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@
1212
->addPatternFilter(PatternFilter::fromString('/ext-.*/'))
1313
->addNamedFilter(NamedFilter::fromString('beberlei/doctrineextensions'))
1414
->addNamedFilter(NamedFilter::fromString('doctrine/doctrine-migrations-bundle'))
15-
->addNamedFilter(NamedFilter::fromString('dukecity/command-scheduler-bundle'))
16-
->addNamedFilter(NamedFilter::fromString('lexik/jwt-authentication-bundle'))
17-
->addNamedFilter(NamedFilter::fromString('matthiasnoback/symfony-console-form'))
1815
->addNamedFilter(NamedFilter::fromString('nelmio/cors-bundle'))
1916
->addPatternFilter(PatternFilter::fromString('/symfony\/.*/'))
2017
->addNamedFilter(NamedFilter::fromString('twig/extra-bundle'))

‎composer.json

Lines changed: 3 additions & 2 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.4",
17+
"version": "v1.4.5",
1818
"license": "MIT",
1919
"authors": [
2020
{
@@ -37,11 +37,12 @@
3737
"ext-iconv": "*",
3838
"ext-json": "*",
3939
"ext-mbstring": "*",
40+
"ext-hash": "*",
4041
"ext-pdo": "*",
4142
"ext-pdo_mysql": "*",
4243
"beberlei/doctrineextensions": "^1.3",
4344
"doctrine/annotations": "^1.14",
44-
"doctrine/doctrine-bundle": "^2.8",
45+
"doctrine/doctrine-bundle": "^2.9",
4546
"doctrine/doctrine-migrations-bundle": "^3.2",
4647
"doctrine/orm": "^2.14",
4748
"dukecity/command-scheduler-bundle": "^5.0",

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /