Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop support for PHP 5.6 + 7.0 #230

Merged
merged 3 commits into from
Feb 3, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/code-style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- name: Install php
uses: shivammathur/setup-php@v2
with:
php-version: "5.6"
php-version: "7.1"

- name: Install dependencies
run: composer update --dev --no-interaction --prefer-dist --no-progress --no-suggest --ansi
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
php: ['5.6', '7.0', '7.1', '7.2', '7.3']
php: ['7.1', '7.2', '7.3']
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
}
},
"require": {
"php": "^5.6 || ^7.0 || ^8.0",
"php": "^7.1 || ^8.0",
"ext-zlib": "*"
},
"conflict": {
Expand All @@ -37,9 +37,9 @@
"setasign/fpdf": "FPDI will extend this class but as it is also possible to use TCPDF or tFPDF as an alternative. There's no fixed dependency configured."
},
"require-dev": {
"phpunit/phpunit": "~5.7",
"phpunit/phpunit": "^7",
"setasign/fpdf": "~1.8.6",
"tecnickcom/tcpdf": "~6.2",
"tecnickcom/tcpdf": "^6.2",
"setasign/tfpdf": "~1.33",
"squizlabs/php_codesniffer": "^3.5"
},
Expand Down
Loading