Skip to content

Commit f9ef70a

Browse files
authored
Merge pull request #230 from Setasign/development
Drop support for PHP 5.6 + 7.0
2 parents b866b5a + 5e24354 commit f9ef70a

File tree

10 files changed

+571
-422
lines changed

10 files changed

+571
-422
lines changed

.github/workflows/code-style.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- name: Install php
1212
uses: shivammathur/setup-php@v2
1313
with:
14-
php-version: "5.6"
14+
php-version: "7.1"
1515

1616
- name: Install dependencies
1717
run: composer update --dev --no-interaction --prefer-dist --no-progress --no-suggest --ansi

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-20.04
77
strategy:
88
matrix:
9-
php: ['5.6', '7.0', '7.1', '7.2', '7.3']
9+
php: ['7.1', '7.2', '7.3']
1010
steps:
1111
- name: Checkout
1212
uses: actions/checkout@v2

composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
}
1616
},
1717
"require": {
18-
"php": "^5.6 || ^7.0 || ^8.0",
18+
"php": "^7.1 || ^8.0",
1919
"ext-zlib": "*"
2020
},
2121
"conflict": {
@@ -37,9 +37,9 @@
3737
"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."
3838
},
3939
"require-dev": {
40-
"phpunit/phpunit": "~5.7",
40+
"phpunit/phpunit": "^7",
4141
"setasign/fpdf": "~1.8.6",
42-
"tecnickcom/tcpdf": "~6.2",
42+
"tecnickcom/tcpdf": "^6.2",
4343
"setasign/tfpdf": "~1.33",
4444
"squizlabs/php_codesniffer": "^3.5"
4545
},

0 commit comments

Comments
 (0)