Skip to content

Commit

Permalink
Merge pull request #39 from beganovich/5
Browse files Browse the repository at this point in the history
Version 5.0
  • Loading branch information
beganovich authored Mar 20, 2024
2 parents ad18163 + 8e8e487 commit 3b21c7a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
operating-system: ["ubuntu-22.04"]
php-versions: ["8.1", "8.2"]
php-versions: ["8.2", "8.3"]

steps:
- uses: actions/checkout@v2
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@
}
},
"require": {
"php": "^8.1|^8.2",
"php": ">=8.2",
"ext-zip": "*",
"symfony/process": "^6.2",
"symfony/console": "^6.2",
"symfony/filesystem": "^6.2"
"symfony/process": "^7.0",
"symfony/console": "^7.0",
"symfony/filesystem": "^7.0"
},
"require-dev": {
"ext-fileinfo": "*",
"friendsofphp/php-cs-fixer": "^3.6",
"phpunit/phpunit": "^9.5"
"phpunit/phpunit": "^11.0"
},
"bin": ["snappdf"]
}
2 changes: 1 addition & 1 deletion src/Command/ConvertHtmlToPdfCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ protected function configure(): void
* @throws \Beganovich\Snappdf\Exception\PlatformNotSupported
* @throws \Beganovich\Snappdf\Exception\ProcessFailedException
*/
protected function execute(InputInterface $input, OutputInterface $output)
protected function execute(InputInterface $input, OutputInterface $output): int
{
$url = $input->getOption('url');
$html = $input->getOption('html');
Expand Down

0 comments on commit 3b21c7a

Please sign in to comment.