Skip to content

Commit 8f84bf8

Browse files
committed
feature #1658 Update to Symfony 8.1 (javiereguiluz)
This PR was squashed before being merged into the main branch. Discussion ---------- Update to Symfony 8.1 ~Not finished yet. I still need to update the Symfony recipes.~ Commits ------- 9b86f4d Update to Symfony 8.1
2 parents f5556d4 + 9b86f4d commit 8f84bf8

9 files changed

Lines changed: 632 additions & 2118 deletions

File tree

.php-cs-fixer.dist.php

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,18 @@
1818
file that was distributed with this source code.
1919
COMMENT;
2020

21+
$finder = (new PhpCsFixer\Finder())
22+
->in(__DIR__.'/src')
23+
->in(__DIR__.'/tests')
24+
->exclude('var')
25+
->notPath([
26+
'config/bundles.php',
27+
'config/reference.php',
28+
])
29+
;
30+
2131
return new PhpCsFixer\Config()
22-
->setFinder(
23-
PhpCsFixer\Finder::create()->in(['src', 'tests'])->append([__FILE__])
24-
)
32+
->setFinder($finder)
2533
->setRiskyAllowed(true)
2634
->setRules([
2735
'@PHP8x4Migration' => true,

assets/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// start the Stimulus application
21
import './stimulus_bootstrap.js';
2+
// start the Stimulus application
33
import './styles/app.scss';
44
import 'highlight.js/styles/github-dark-dimmed.css';
55
import 'lato-font/css/lato-font.css';

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
"symfony/runtime": true
7979
},
8080
"platform": {
81-
"php": "8.4.0"
81+
"php": "8.4.1"
8282
},
8383
"preferred-install": {
8484
"*": "dist"
@@ -113,7 +113,7 @@
113113
"extra": {
114114
"symfony": {
115115
"allow-contrib": true,
116-
"require": "8.0.*"
116+
"require": "8.1.*"
117117
}
118118
}
119119
}

0 commit comments

Comments
 (0)