Skip to content

Commit 019b721

Browse files
committed
composer update
1 parent 3432130 commit 019b721

5 files changed

+91
-8
lines changed

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,8 @@
2727
###> jetbrains/phpstorm ###
2828
.idea/
2929
###< jetbrains/phpstorm ###
30+
31+
###> php-cs-fixer/shim ###
32+
/.php-cs-fixer.php
33+
/.php-cs-fixer.cache
34+
###< php-cs-fixer/shim ###

.php-cs-fixer.dist.php

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
3+
$finder = (new PhpCsFixer\Finder())
4+
->in(__DIR__)
5+
->exclude('var')
6+
;
7+
8+
return (new PhpCsFixer\Config())
9+
->setRules([
10+
'@Symfony' => true,
11+
])
12+
->setFinder($finder)
13+
;

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101
"symfony/browser-kit": "7.2.*",
102102
"symfony/css-selector": "7.2.*",
103103
"symfony/debug-bundle": "7.2.*",
104-
"symfony/maker-bundle": "^1.61",
104+
"symfony/maker-bundle": "^1.62",
105105
"symfony/phpunit-bridge": "^7.2",
106106
"symfony/stopwatch": "7.2.*",
107107
"symfony/web-profiler-bundle": "7.2.*"

composer.lock

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

symfony.lock

+12
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,18 @@
2626
"./migrations/.gitignore"
2727
]
2828
},
29+
"php-cs-fixer/shim": {
30+
"version": "3.68",
31+
"recipe": {
32+
"repo": "github.com/symfony/recipes",
33+
"branch": "main",
34+
"version": "3.0",
35+
"ref": "16422bf8eac6c3be42afe07d37e2abc89d2bdf6b"
36+
},
37+
"files": [
38+
"./.php-cs-fixer.dist.php"
39+
]
40+
},
2941
"phpunit/phpunit": {
3042
"version": "9.6",
3143
"recipe": {

0 commit comments

Comments
 (0)