Skip to content

Commit 8b77c82

Browse files
author
DKravtsov
committed
Updated composer dependencies, refactoring.
1 parent 5429b36 commit 8b77c82

File tree

92 files changed

+194
-184
lines changed

Some content is hidden

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

92 files changed

+194
-184
lines changed

.env

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ WEB_PORT_SSL=443
2525
XDEBUG_CONFIG=main
2626
# Sometimes we need to use different xdebug versions, list of versions can be found here - https://pecl.php.net/package/xdebug
2727
XDEBUG_VERSION=3.3.2
28-
# MySQL version, recommend values: 8.4|8.3|8.2|8.1|8.0
29-
MYSQL_VERSION=8.4
28+
# MySQL version, recommend values: 8.4.2|8.3.0|8.2.0|8.1.0|8.0.39
29+
MYSQL_VERSION=8.4.2
3030
# 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
3131
INNODB_USE_NATIVE_AIO=1
3232
# 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

.idea/php.xml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

composer.json

+1-1
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": "v3.1.2",
17+
"version": "v3.1.3",
1818
"license": "MIT",
1919
"authors": [
2020
{

composer.lock

+20-18
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/ApiKey/Transport/Controller/Api/v1/ApiKey/ApiKeyController.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
use App\General\Transport\Rest\Traits\Actions;
1414
use OpenApi\Attributes as OA;
1515
use Symfony\Component\HttpKernel\Attribute\AsController;
16-
use Symfony\Component\Routing\Annotation\Route;
16+
use Symfony\Component\Routing\Attribute\Route;
1717
use Symfony\Component\Security\Core\Authorization\Voter\AuthenticatedVoter;
1818
use Symfony\Component\Security\Http\Attribute\IsGranted;
1919

src/ApiKey/Transport/Controller/Api/v2/ApiKey/ApiKeyCountController.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
use App\General\Transport\Rest\Traits\Actions;
1212
use OpenApi\Attributes as OA;
1313
use Symfony\Component\HttpKernel\Attribute\AsController;
14-
use Symfony\Component\Routing\Annotation\Route;
14+
use Symfony\Component\Routing\Attribute\Route;
1515
use Symfony\Component\Security\Core\Authorization\Voter\AuthenticatedVoter;
1616
use Symfony\Component\Security\Http\Attribute\IsGranted;
1717

src/ApiKey/Transport/Controller/Api/v2/ApiKey/ApiKeyCreateController.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
use App\General\Transport\Rest\Traits\Actions;
1313
use OpenApi\Attributes as OA;
1414
use Symfony\Component\HttpKernel\Attribute\AsController;
15-
use Symfony\Component\Routing\Annotation\Route;
15+
use Symfony\Component\Routing\Attribute\Route;
1616
use Symfony\Component\Security\Core\Authorization\Voter\AuthenticatedVoter;
1717
use Symfony\Component\Security\Http\Attribute\IsGranted;
1818

src/ApiKey/Transport/Controller/Api/v2/ApiKey/ApiKeyDeleteController.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
use App\General\Transport\Rest\Traits\Actions;
1212
use OpenApi\Attributes as OA;
1313
use Symfony\Component\HttpKernel\Attribute\AsController;
14-
use Symfony\Component\Routing\Annotation\Route;
14+
use Symfony\Component\Routing\Attribute\Route;
1515
use Symfony\Component\Security\Core\Authorization\Voter\AuthenticatedVoter;
1616
use Symfony\Component\Security\Http\Attribute\IsGranted;
1717

src/ApiKey/Transport/Controller/Api/v2/ApiKey/ApiKeyIdsController.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
use App\General\Transport\Rest\Traits\Actions;
1212
use OpenApi\Attributes as OA;
1313
use Symfony\Component\HttpKernel\Attribute\AsController;
14-
use Symfony\Component\Routing\Annotation\Route;
14+
use Symfony\Component\Routing\Attribute\Route;
1515
use Symfony\Component\Security\Core\Authorization\Voter\AuthenticatedVoter;
1616
use Symfony\Component\Security\Http\Attribute\IsGranted;
1717

src/ApiKey/Transport/Controller/Api/v2/ApiKey/ApiKeyListController.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
use App\General\Transport\Rest\Traits\Actions;
1212
use OpenApi\Attributes as OA;
1313
use Symfony\Component\HttpKernel\Attribute\AsController;
14-
use Symfony\Component\Routing\Annotation\Route;
14+
use Symfony\Component\Routing\Attribute\Route;
1515
use Symfony\Component\Security\Core\Authorization\Voter\AuthenticatedVoter;
1616
use Symfony\Component\Security\Http\Attribute\IsGranted;
1717

src/ApiKey/Transport/Controller/Api/v2/ApiKey/ApiKeyPatchController.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
use App\General\Transport\Rest\Traits\Actions;
1313
use OpenApi\Attributes as OA;
1414
use Symfony\Component\HttpKernel\Attribute\AsController;
15-
use Symfony\Component\Routing\Annotation\Route;
15+
use Symfony\Component\Routing\Attribute\Route;
1616
use Symfony\Component\Security\Core\Authorization\Voter\AuthenticatedVoter;
1717
use Symfony\Component\Security\Http\Attribute\IsGranted;
1818

src/ApiKey/Transport/Controller/Api/v2/ApiKey/ApiKeyUpdateController.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
use App\General\Transport\Rest\Traits\Actions;
1313
use OpenApi\Attributes as OA;
1414
use Symfony\Component\HttpKernel\Attribute\AsController;
15-
use Symfony\Component\Routing\Annotation\Route;
15+
use Symfony\Component\Routing\Attribute\Route;
1616
use Symfony\Component\Security\Core\Authorization\Voter\AuthenticatedVoter;
1717
use Symfony\Component\Security\Http\Attribute\IsGranted;
1818

src/ApiKey/Transport/Controller/Api/v2/ApiKey/ApiKeyViewController.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
use App\General\Transport\Rest\Traits\Actions;
1212
use OpenApi\Attributes as OA;
1313
use Symfony\Component\HttpKernel\Attribute\AsController;
14-
use Symfony\Component\Routing\Annotation\Route;
14+
use Symfony\Component\Routing\Attribute\Route;
1515
use Symfony\Component\Security\Core\Authorization\Voter\AuthenticatedVoter;
1616
use Symfony\Component\Security\Http\Attribute\IsGranted;
1717

src/General/Transport/Rest/Traits/Actions/Admin/CountAction.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
use OpenApi\Attributes\Property;
1212
use Symfony\Component\HttpFoundation\Request;
1313
use Symfony\Component\HttpFoundation\Response;
14-
use Symfony\Component\Routing\Annotation\Route;
14+
use Symfony\Component\Routing\Attribute\Route;
1515
use Symfony\Component\Security\Http\Attribute\IsGranted;
1616
use Throwable;
1717

src/General/Transport/Rest/Traits/Actions/Admin/CreateAction.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
use OpenApi\Attributes\Property;
1313
use Symfony\Component\HttpFoundation\Request;
1414
use Symfony\Component\HttpFoundation\Response;
15-
use Symfony\Component\Routing\Annotation\Route;
15+
use Symfony\Component\Routing\Attribute\Route;
1616
use Symfony\Component\Security\Http\Attribute\IsGranted;
1717
use Throwable;
1818

src/General/Transport/Rest/Traits/Actions/Admin/DeleteAction.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
use OpenApi\Attributes\Property;
1212
use Symfony\Component\HttpFoundation\Request;
1313
use Symfony\Component\HttpFoundation\Response;
14-
use Symfony\Component\Routing\Annotation\Route;
14+
use Symfony\Component\Routing\Attribute\Route;
1515
use Symfony\Component\Routing\Requirement\Requirement;
1616
use Symfony\Component\Security\Http\Attribute\IsGranted;
1717
use Throwable;

src/General/Transport/Rest/Traits/Actions/Admin/FindAction.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
use OpenApi\Attributes\Property;
1212
use Symfony\Component\HttpFoundation\Request;
1313
use Symfony\Component\HttpFoundation\Response;
14-
use Symfony\Component\Routing\Annotation\Route;
14+
use Symfony\Component\Routing\Attribute\Route;
1515
use Symfony\Component\Security\Http\Attribute\IsGranted;
1616
use Throwable;
1717

src/General/Transport/Rest/Traits/Actions/Admin/FindOneAction.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
use OpenApi\Attributes\Property;
1212
use Symfony\Component\HttpFoundation\Request;
1313
use Symfony\Component\HttpFoundation\Response;
14-
use Symfony\Component\Routing\Annotation\Route;
14+
use Symfony\Component\Routing\Attribute\Route;
1515
use Symfony\Component\Routing\Requirement\Requirement;
1616
use Symfony\Component\Security\Http\Attribute\IsGranted;
1717
use Throwable;

src/General/Transport/Rest/Traits/Actions/Admin/IdsAction.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
use OpenApi\Attributes\Property;
1212
use Symfony\Component\HttpFoundation\Request;
1313
use Symfony\Component\HttpFoundation\Response;
14-
use Symfony\Component\Routing\Annotation\Route;
14+
use Symfony\Component\Routing\Attribute\Route;
1515
use Symfony\Component\Security\Http\Attribute\IsGranted;
1616
use Throwable;
1717

src/General/Transport/Rest/Traits/Actions/Admin/PatchAction.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
use OpenApi\Attributes\Property;
1313
use Symfony\Component\HttpFoundation\Request;
1414
use Symfony\Component\HttpFoundation\Response;
15-
use Symfony\Component\Routing\Annotation\Route;
15+
use Symfony\Component\Routing\Attribute\Route;
1616
use Symfony\Component\Routing\Requirement\Requirement;
1717
use Symfony\Component\Security\Http\Attribute\IsGranted;
1818
use Throwable;

src/General/Transport/Rest/Traits/Actions/Admin/UpdateAction.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
use OpenApi\Attributes\Property;
1313
use Symfony\Component\HttpFoundation\Request;
1414
use Symfony\Component\HttpFoundation\Response;
15-
use Symfony\Component\Routing\Annotation\Route;
15+
use Symfony\Component\Routing\Attribute\Route;
1616
use Symfony\Component\Routing\Requirement\Requirement;
1717
use Symfony\Component\Security\Http\Attribute\IsGranted;
1818
use Throwable;

src/General/Transport/Rest/Traits/Actions/Anon/CountAction.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
use OpenApi\Attributes\Property;
1111
use Symfony\Component\HttpFoundation\Request;
1212
use Symfony\Component\HttpFoundation\Response;
13-
use Symfony\Component\Routing\Annotation\Route;
13+
use Symfony\Component\Routing\Attribute\Route;
1414
use Throwable;
1515

1616
/**

src/General/Transport/Rest/Traits/Actions/Anon/CreateAction.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
use OpenApi\Attributes\JsonContent;
1111
use Symfony\Component\HttpFoundation\Request;
1212
use Symfony\Component\HttpFoundation\Response;
13-
use Symfony\Component\Routing\Annotation\Route;
13+
use Symfony\Component\Routing\Attribute\Route;
1414
use Throwable;
1515

1616
/**

src/General/Transport/Rest/Traits/Actions/Anon/DeleteAction.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
use OpenApi\Attributes\JsonContent;
1010
use Symfony\Component\HttpFoundation\Request;
1111
use Symfony\Component\HttpFoundation\Response;
12-
use Symfony\Component\Routing\Annotation\Route;
12+
use Symfony\Component\Routing\Attribute\Route;
1313
use Symfony\Component\Routing\Requirement\Requirement;
1414
use Throwable;
1515

src/General/Transport/Rest/Traits/Actions/Anon/FindAction.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
use OpenApi\Attributes\JsonContent;
1010
use Symfony\Component\HttpFoundation\Request;
1111
use Symfony\Component\HttpFoundation\Response;
12-
use Symfony\Component\Routing\Annotation\Route;
12+
use Symfony\Component\Routing\Attribute\Route;
1313
use Throwable;
1414

1515
/**

src/General/Transport/Rest/Traits/Actions/Anon/FindOneAction.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
use OpenApi\Attributes\JsonContent;
1010
use Symfony\Component\HttpFoundation\Request;
1111
use Symfony\Component\HttpFoundation\Response;
12-
use Symfony\Component\Routing\Annotation\Route;
12+
use Symfony\Component\Routing\Attribute\Route;
1313
use Symfony\Component\Routing\Requirement\Requirement;
1414
use Throwable;
1515

src/General/Transport/Rest/Traits/Actions/Anon/IdsAction.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
use OpenApi\Attributes\JsonContent;
1010
use Symfony\Component\HttpFoundation\Request;
1111
use Symfony\Component\HttpFoundation\Response;
12-
use Symfony\Component\Routing\Annotation\Route;
12+
use Symfony\Component\Routing\Attribute\Route;
1313
use Throwable;
1414

1515
/**

src/General/Transport/Rest/Traits/Actions/Anon/PatchAction.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
use OpenApi\Attributes\JsonContent;
1111
use Symfony\Component\HttpFoundation\Request;
1212
use Symfony\Component\HttpFoundation\Response;
13-
use Symfony\Component\Routing\Annotation\Route;
13+
use Symfony\Component\Routing\Attribute\Route;
1414
use Symfony\Component\Routing\Requirement\Requirement;
1515
use Throwable;
1616

src/General/Transport/Rest/Traits/Actions/Anon/UpdateAction.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
use OpenApi\Attributes\JsonContent;
1111
use Symfony\Component\HttpFoundation\Request;
1212
use Symfony\Component\HttpFoundation\Response;
13-
use Symfony\Component\Routing\Annotation\Route;
13+
use Symfony\Component\Routing\Attribute\Route;
1414
use Symfony\Component\Routing\Requirement\Requirement;
1515
use Throwable;
1616

src/General/Transport/Rest/Traits/Actions/Authenticated/CountAction.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
use OpenApi\Attributes\Property;
1111
use Symfony\Component\HttpFoundation\Request;
1212
use Symfony\Component\HttpFoundation\Response;
13-
use Symfony\Component\Routing\Annotation\Route;
13+
use Symfony\Component\Routing\Attribute\Route;
1414
use Symfony\Component\Security\Core\Authorization\Voter\AuthenticatedVoter;
1515
use Symfony\Component\Security\Http\Attribute\IsGranted;
1616
use Throwable;

src/General/Transport/Rest/Traits/Actions/Authenticated/CreateAction.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
use OpenApi\Attributes\Property;
1212
use Symfony\Component\HttpFoundation\Request;
1313
use Symfony\Component\HttpFoundation\Response;
14-
use Symfony\Component\Routing\Annotation\Route;
14+
use Symfony\Component\Routing\Attribute\Route;
1515
use Symfony\Component\Security\Core\Authorization\Voter\AuthenticatedVoter;
1616
use Symfony\Component\Security\Http\Attribute\IsGranted;
1717
use Throwable;

0 commit comments

Comments
 (0)