Skip to content

Commit 250ac5e

Browse files
authored
Merge pull request #17 from alexanderschnitzler/main
Allow installation with symfony v7 packages
2 parents 324f3fc + 4eace3e commit 250ac5e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
},
1717
"require": {
1818
"php": "^8.1",
19-
"symfony/yaml": "^6.0",
19+
"symfony/yaml": "^6 || ^7",
2020
"typo3/cms-core": "^12",
2121
"ext-json": "*"
2222
},

src/Command/SiteImportCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ protected function configure()
3737
/**
3838
* Imports database entries into the database, based on Yaml configuration
3939
*/
40-
public function execute(InputInterface $input, OutputInterface $output)
40+
public function execute(InputInterface $input, OutputInterface $output): int
4141
{
4242
$file = $input->getArgument('file');
4343

0 commit comments

Comments
 (0)