Skip to content

Commit b02af03

Browse files
committed
chore: drop support for PHP 7.1
1 parent f08e092 commit b02af03

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-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@v4
13-
- name: Use php 7.1
13+
- name: Use php 7.2
1414
uses: shivammathur/setup-php@v2
1515
with:
16-
php-version: 7.1
16+
php-version: 7.2
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@v4
33-
- name: Use php 7.1
33+
- name: Use php 7.2
3434
uses: shivammathur/setup-php@v2
3535
with:
36-
php-version: 7.1
36+
php-version: 7.2
3737
- name: Cache module
3838
uses: actions/cache@v4
3939
with:

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ${{ matrix.os }}
1212
strategy:
1313
matrix:
14-
php-version: ["7.1", "7.2", "7.3", "7.4", "8.0", "8.1", "8.2", "8.3"]
14+
php-version: ["7.2", "7.3", "7.4", "8.0", "8.1", "8.2", "8.3"]
1515
os: [ubuntu-latest]
1616
experimental: [false]
1717
composer-options: ['']

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [1.x.x] - YYYY-MM-DD
88

9+
- Drop support for PHP 7.1
10+
911
## [1.5.0] - 2022-02-18
1012

1113
- Allow more versions of symfony/console (`^5|^6`)

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.1 || ^8.0",
41+
"php": "^7.2 || ^8.0",
4242
"ondram/ci-detector": "^4.0",
4343
"symfony/console": "~3.4|~4.3|^5|^6"
4444
},

0 commit comments

Comments
 (0)