Skip to content

Commit b35841a

Browse files
committed
drop support for long-dead php versions
1 parent 2ebe9ce commit b35841a

File tree

2 files changed

+11
-13
lines changed

2 files changed

+11
-13
lines changed

.github/workflows/tests.yaml

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,19 @@ on:
1010

1111
jobs:
1212
Tests:
13-
runs-on: 'ubuntu-latest'
13+
runs-on: "ubuntu-latest"
1414
strategy:
1515
matrix:
1616
php:
17-
- '7.4'
18-
- '8.0'
19-
- '8.1'
20-
- '8.2'
21-
- '8.3'
22-
- '8.4'
23-
dependencies: ['highest']
17+
- "8.1"
18+
- "8.2"
19+
- "8.3"
20+
- "8.4"
21+
dependencies: ["highest"]
2422
include:
25-
- description: '(lowest)'
26-
php: '7.4'
27-
dependencies: 'lowest'
23+
- description: "(lowest)"
24+
php: "8.1"
25+
dependencies: "lowest"
2826

2927
name: PHP ${{ matrix.php }} ${{ matrix.description }}
3028
steps:
@@ -46,7 +44,7 @@ jobs:
4644
- name: "Upload test coverage"
4745
uses: codecov/codecov-action@v5
4846
with:
49-
files: './coverage.xml'
47+
files: "./coverage.xml"
5048
fail_ci_if_error: true
5149
env:
5250
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
}
1111
],
1212
"require": {
13-
"php": "^7.4 || ^8.0",
13+
"php": "^8.1",
1414
"phpstan/phpstan": "^2.0",
1515
"thecodingmachine/safe": "^1.0 || ^2.0 || ^3.0",
1616
"nikic/php-parser": "^5"

0 commit comments

Comments
 (0)