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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

composer.json

Lines changed: 1 addition & 1 deletion
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

Lines changed: 20 additions & 18 deletions
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

0 commit comments

Comments
 (0)