Skip to content

Commit

Permalink
Merge pull request #1220 from tarlepp/chore(deps)/dependency-update
Browse files Browse the repository at this point in the history
Chore(deps) - Dependency update
  • Loading branch information
tarlepp committed May 11, 2021
2 parents 2e966d7 + 91b5b91 commit c735c69
Show file tree
Hide file tree
Showing 14 changed files with 459 additions and 2,020 deletions.
4 changes: 2 additions & 2 deletions composer.json
Expand Up @@ -25,7 +25,7 @@
"ext-mbstring": "*",
"ext-pdo": "*",
"doctrine/annotations": "1.12.1",
"doctrine/doctrine-bundle": "2.3.1",
"doctrine/doctrine-bundle": "2.3.2",
"doctrine/doctrine-migrations-bundle": "3.1.1",
"doctrine/orm": "2.8.4",
"gedmo/doctrine-extensions": "3.0.5",
Expand Down Expand Up @@ -69,7 +69,7 @@
"roave/security-advisories": "dev-latest",
"symfony/browser-kit": "5.2.7",
"symfony/debug-bundle": "5.2.4",
"symfony/maker-bundle": "1.30.2",
"symfony/maker-bundle": "1.31.0",
"symfony/requirements-checker": "2.0.0",
"symfony/stopwatch": "5.2.7",
"symfony/var-dumper": "5.2.7",
Expand Down
89 changes: 47 additions & 42 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion ecs.php
Expand Up @@ -11,7 +11,9 @@
use PhpCsFixer\Fixer\ArrayNotation\NoMultilineWhitespaceAroundDoubleArrowFixer;
use PhpCsFixer\Fixer\CastNotation\CastSpacesFixer;
use PhpCsFixer\Fixer\ClassNotation\ClassAttributesSeparationFixer;
use PhpCsFixer\Fixer\ConstantNotation\NativeConstantInvocationFixer;
use PhpCsFixer\Fixer\ControlStructure\YodaStyleFixer;
use PhpCsFixer\Fixer\FunctionNotation\NativeFunctionInvocationFixer;
use PhpCsFixer\Fixer\FunctionNotation\SingleLineThrowFixer;
use PhpCsFixer\Fixer\Import\OrderedImportsFixer;
use PhpCsFixer\Fixer\LanguageConstruct\DeclareEqualNormalizeFixer;
Expand Down Expand Up @@ -39,10 +41,10 @@
return static function (ContainerConfigurator $containerConfigurator): void {
$imports = [
'/tools/04_symplify/vendor/symplify/easy-coding-standard/config/set/psr12.php',
'/tools/04_symplify/vendor/symplify/easy-coding-standard/config/set/php80-migration-risky.php',
'/tools/04_symplify/vendor/symplify/easy-coding-standard/config/set/clean-code.php',
'/tools/04_symplify/vendor/symplify/easy-coding-standard/config/set/common.php',
'/tools/04_symplify/vendor/symplify/easy-coding-standard/config/set/symfony.php',
'/tools/04_symplify/vendor/symplify/easy-coding-standard/config/set/symfony-risky.php',
];

array_map(
Expand Down Expand Up @@ -170,6 +172,8 @@
UnusedParameterSniff::class => null,
HeredocIndentationFixer::class => null,
PhpdocToCommentFixer::class => null,
NativeFunctionInvocationFixer::class => null,
NativeConstantInvocationFixer::class => null,
]
);
};

0 comments on commit c735c69

Please sign in to comment.