Skip to content

Commit

Permalink
Merge pull request #17 from alexanderschnitzler/main
Browse files Browse the repository at this point in the history
Allow installation with symfony v7 packages
  • Loading branch information
bmack authored Jul 26, 2024
2 parents 324f3fc + 4eace3e commit 250ac5e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
},
"require": {
"php": "^8.1",
"symfony/yaml": "^6.0",
"symfony/yaml": "^6 || ^7",
"typo3/cms-core": "^12",
"ext-json": "*"
},
Expand Down
2 changes: 1 addition & 1 deletion src/Command/SiteImportCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ protected function configure()
/**
* Imports database entries into the database, based on Yaml configuration
*/
public function execute(InputInterface $input, OutputInterface $output)
public function execute(InputInterface $input, OutputInterface $output): int
{
$file = $input->getArgument('file');

Expand Down

0 comments on commit 250ac5e

Please sign in to comment.