Skip to content

Commit

Permalink
Merge pull request #22 from tarfin-labs/laravel-11-support
Browse files Browse the repository at this point in the history
Laravel 11 support
  • Loading branch information
mkeremcansev authored Apr 8, 2024
2 parents a7efe88 + 68a9665 commit 75c8a4a
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [7.3, 7.4, '8.0', 8.1, 8.2]
laravel: [6, 7, 8, 9, 10]
php: [7.3, 7.4, '8.0', 8.1, 8.2, 8.3]
laravel: [6, 7, 8, 9, 10, 11]
exclude:
- php: 7.3
laravel: 9
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ All notable changes to `easy-pdf` will be documented in this file.

## [Unreleased]

## 3.0.0 - 2024-04-08
- Laravel 11 and PHP 8.3 support added.

## 2.9.0 - 2023-08-16
- `setDuplex()` method added.

Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@
}
],
"require": {
"php": "^7.3|^8.0|^8.1|^8.2",
"illuminate/support": "6.11.0|^7.0|^8.0|^9.0|^10.0",
"php": "^7.3|^8.0|^8.1|^8.2|^8.3",
"illuminate/support": "6.11.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"setasign/fpdi-tcpdf": "^2.2",
"tecnickcom/tcpdf": "^6.3",
"ext-fileinfo": "*"
},
"require-dev": {
"mockery/mockery": "^1.3",
"orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0",
"orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0",
"phpunit/phpunit": "^9.0|^10.0"
},
"autoload": {
Expand Down
4 changes: 2 additions & 2 deletions tests/PdfTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ public function it_can_convert_html_to_pdf()
'Title' => 'Tarfin',
'Subject' => 'Tarfin',
'Keywords' => 'easy-pdf, pdf',
'Creator' => 'Tarfin',
'Author' => 'Faruk Can',
'Creator' => 'Tarfin',
'Author' => 'Faruk Can',
'AutoPageBreak' => [true, 0],
])
->withConfig([
Expand Down

0 comments on commit 75c8a4a

Please sign in to comment.