Skip to content

Commit 9fd77d0

Browse files
committed
chore: drop PHP 7.4, PHP 8.0. Require PHP >= 8.1
1 parent 5bc07c2 commit 9fd77d0

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/lint-and-analyse.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v6
13-
- name: Use php 7.4
13+
- name: Use php 8.1
1414
uses: shivammathur/setup-php@v2
1515
with:
16-
php-version: 7.4
16+
php-version: 8.1
1717
- name: Validate composer.json and composer.lock
1818
run: composer validate
1919
- name: Cache module
@@ -30,10 +30,10 @@ jobs:
3030
runs-on: ubuntu-latest
3131
steps:
3232
- uses: actions/checkout@v6
33-
- name: Use php 7.4
33+
- name: Use php 8.1
3434
uses: shivammathur/setup-php@v2
3535
with:
36-
php-version: 7.4
36+
php-version: 8.1
3737
- name: Cache module
3838
uses: actions/cache@v5
3939
with:

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
php-version: ["7.4", "8.0", "8.1", "8.2", "8.3", "8.4", "8.5"]
15+
php-version: ["8.1", "8.2", "8.3", "8.4", "8.5"]
1616
os: [ubuntu-latest]
1717
experimental: [false]
1818
composer-options: ['', '--prefer-lowest']

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"phpcbf": "@php ./vendor/bin/phpcbf"
3939
},
4040
"require": {
41-
"php": "^7.4 || ^8.0",
41+
"php": "^8.1",
4242
"ondram/ci-detector": "^4.0",
4343
"symfony/console": "^6.4.27 || ^7.3 || ^8"
4444
},

0 commit comments

Comments
 (0)