Skip to content

Commit

Permalink
Merge pull request #29 from kennaar/main
Browse files Browse the repository at this point in the history
Allow Symfony ^7.0 as dependency
  • Loading branch information
IchHabRecht authored Aug 5, 2024
2 parents e9db2b4 + 790ea36 commit 01a92d4
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
/.idea
/.Log
composer.lock
.phpunit.result.cache
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@
"ext-json": "*",
"ext-simplexml": "*",
"phpunit/php-code-coverage": "^9.0 || ^10.0",
"symfony/console": ">=2.7 <7.0",
"symfony/finder": ">=2.7 <7.0"
"symfony/console": ">=2.7 <8.0",
"symfony/finder": ">=2.7 <8.0"
},
"require-dev": {
"phpunit/phpunit": "^9.3 || ^10.0",
"symfony/filesystem": ">=2.7 <7.0",
"symfony/filesystem": ">=2.7 <8.0",
"phpspec/prophecy": "^1.0",
"php-parallel-lint/php-parallel-lint": "^1.4"
},
Expand Down
2 changes: 1 addition & 1 deletion src/PhpunitMerger/Command/CoverageCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ protected function configure()
);
}

protected function execute(InputInterface $input, OutputInterface $output)
protected function execute(InputInterface $input, OutputInterface $output): int
{
$finder = new Finder();
$finder->files()
Expand Down
2 changes: 1 addition & 1 deletion src/PhpunitMerger/Command/LogCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ protected function configure()
);
}

protected function execute(InputInterface $input, OutputInterface $output)
protected function execute(InputInterface $input, OutputInterface $output): int
{
$finder = new Finder();
$finder->files()
Expand Down

0 comments on commit 01a92d4

Please sign in to comment.