From d5ef1474c3d4501b2094f196d38959ec69c5de55 Mon Sep 17 00:00:00 2001 From: Faruk Can Date: Tue, 26 Mar 2024 11:11:43 +0300 Subject: [PATCH 1/4] Apply fixes from StyleCI (#21) --- tests/PdfTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/PdfTest.php b/tests/PdfTest.php index 0a6a514..d822349 100644 --- a/tests/PdfTest.php +++ b/tests/PdfTest.php @@ -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([ From b16d67c1c00b64f1a28ab585d619fe0a721187cf Mon Sep 17 00:00:00 2001 From: Mustafa Kerem CANSEV <76810832+mkeremcansev@users.noreply.github.com> Date: Tue, 26 Mar 2024 11:17:56 +0300 Subject: [PATCH 2/4] add laravel 11 support --- .github/workflows/tests.yml | 2 +- composer.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3dbf7a5..8aaaa6e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -10,7 +10,7 @@ jobs: fail-fast: true matrix: php: [7.3, 7.4, '8.0', 8.1, 8.2] - laravel: [6, 7, 8, 9, 10] + laravel: [6, 7, 8, 9, 10, 11] exclude: - php: 7.3 laravel: 9 diff --git a/composer.json b/composer.json index 81be9b8..1e5b89d 100755 --- a/composer.json +++ b/composer.json @@ -22,14 +22,14 @@ ], "require": { "php": "^7.3|^8.0|^8.1|^8.2", - "illuminate/support": "6.11.0|^7.0|^8.0|^9.0|^10.0", + "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": { From ce1a9fbde0f4f0420c49adce2817dee8345c3b5f Mon Sep 17 00:00:00 2001 From: Mustafa Kerem CANSEV <76810832+mkeremcansev@users.noreply.github.com> Date: Wed, 3 Apr 2024 09:28:32 +0300 Subject: [PATCH 3/4] add php 8.3 support --- .github/workflows/tests.yml | 2 +- composer.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 8aaaa6e..8b8d90f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,7 +9,7 @@ jobs: strategy: fail-fast: true matrix: - php: [7.3, 7.4, '8.0', 8.1, 8.2] + php: [7.3, 7.4, '8.0', 8.1, 8.2, 8.3] laravel: [6, 7, 8, 9, 10, 11] exclude: - php: 7.3 diff --git a/composer.json b/composer.json index 1e5b89d..8822e29 100755 --- a/composer.json +++ b/composer.json @@ -21,7 +21,7 @@ } ], "require": { - "php": "^7.3|^8.0|^8.1|^8.2", + "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", From 68a9665ca0fcdecc2d8b9567f2d06c44b6ee138f Mon Sep 17 00:00:00 2001 From: Mustafa Kerem CANSEV <76810832+mkeremcansev@users.noreply.github.com> Date: Mon, 8 Apr 2024 16:20:11 +0300 Subject: [PATCH 4/4] update changelog --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 16887fe..b662d57 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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.