Skip to content

Commit

Permalink
Merge pull request #7 from beryllium/symfony-fs-54
Browse files Browse the repository at this point in the history
Update to Symfony 5.4
  • Loading branch information
beryllium authored Oct 7, 2023
2 parents 80174f0 + a161a16 commit 505f46b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
5 changes: 2 additions & 3 deletions DependencyInjection/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,8 @@ class Configuration implements ConfigurationInterface
*/
public function getConfigTreeBuilder()
{
$treeBuilder = new TreeBuilder;

$rootNode = $treeBuilder->root('icelus');
$treeBuilder = new TreeBuilder('icelus');
$rootNode = $treeBuilder->getRootNode();

$rootNode
->children()
Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@
"require": {
"php": "^7.4||^8.0",
"imanee/imanee": "^1.2",
"symfony/filesystem": "^4.1"
"symfony/filesystem": "^5.4"
},
"require-dev": {
"phpunit/phpunit": "^9.4",
"symfony/config": "^4.1",
"symfony/dependency-injection": "^4.1",
"symfony/http-kernel": "^4.1",
"twig/twig": "^2.5||^3.0",
"mikey179/vfsstream": "^1.6"
"mikey179/vfsstream": "^1.6",
"symfony/config": "^5.4",
"symfony/dependency-injection": "^5.4",
"symfony/http-kernel": "^5.4",
"twig/twig": "^2.5||^3.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 505f46b

Please sign in to comment.