Skip to content

Commit e04ac94

Browse files
committed
Drop PHP 7.0 as well, since it doesn't support the void typehint
1 parent 72daef6 commit e04ac94

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/unit-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
php-version: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
11+
php-version: ['7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
1212
steps:
1313
- name: Checkout
1414
uses: actions/checkout@v4

.phpcs.xml.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@
2020

2121
<!-- Ensure we're compatible with PHP 5.6+ -->
2222
<rule ref="PHPCompatibility"/>
23-
<config name="testVersion" value="5.6-"/>
23+
<config name="testVersion" value="7.1-"/>
2424
</ruleset>

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
"source": "https://github.com/stevegrunwell/phpunit-markup-assertions/"
1616
},
1717
"require": {
18-
"php": "^7.0 || ^8.0",
19-
"symfony/css-selector": "^3.4|^4.4|^5.4|^6.0",
20-
"symfony/dom-crawler": "^3.4|^4.4|^5.4|^6.0"
18+
"php": "^7.1 || ^8.0",
19+
"symfony/css-selector": "^4.4|^5.4|^6.0",
20+
"symfony/dom-crawler": "^4.4|^5.4|^6.0"
2121
},
2222
"require-dev": {
2323
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",

0 commit comments

Comments
 (0)