diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 615b5b7..99f6eb8 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -12,7 +12,7 @@ jobs: strategy: fail-fast: true matrix: - php: [7.4] + php: [7.4, 8.0] runs-on: ubuntu-latest name: PHP@${{ matrix.php }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9b83a35..1d2ab5e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,7 +12,7 @@ jobs: strategy: fail-fast: true matrix: - php: [7.2, 7.3, 7.4] + php: [7.2, 7.3, 7.4, 8.0] runs-on: ubuntu-latest name: PHP@${{ matrix.php }} diff --git a/changelog.md b/changelog.md index 3cbd376..4ff30d3 100644 --- a/changelog.md +++ b/changelog.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.3.0] - 2021-10-20 +### Added +- Support for PHP 8 + ## [1.2.0] - 2021-09-06 ### Added - Ability to set `tcpdf` footer and header data via PdfMerge constructor diff --git a/composer.json b/composer.json index 43e4fc4..08e497b 100644 --- a/composer.json +++ b/composer.json @@ -11,7 +11,7 @@ } ], "require": { - "php": ">=7.2", + "php": "^7.2 | ^8.0", "tecnickcom/tcpdf": "^6.3" }, "require-dev": {