Skip to content

Commit

Permalink
Add support for PHP 8
Browse files Browse the repository at this point in the history
  • Loading branch information
fetzi committed Oct 20, 2021
1 parent 6119450 commit 1eb0a1e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
}
],
"require": {
"php": ">=7.2",
"php": "^7.2 | ^8.0",
"tecnickcom/tcpdf": "^6.3"
},
"require-dev": {
Expand Down

0 comments on commit 1eb0a1e

Please sign in to comment.