Skip to content

Commit 7f5d2ff

Browse files
committed
Drop PHP 7.1
Signed-off-by: William Desportes <[email protected]>
1 parent c034171 commit 7f5d2ff

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v3
15-
- name: Use php 7.1
15+
- name: Use php 7.2
1616
uses: shivammathur/setup-php@v2
1717
with:
18-
php-version: 7.1
18+
php-version: 7.2
1919
tools: composer:v2
2020
- name: Validate composer.json and composer.lock
2121
run: composer validate

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
continue-on-error: ${{ matrix.experimental }}
1616
strategy:
1717
matrix:
18-
php-version: ["7.1", "7.2", "7.3", "7.4", "8.0", "8.1", "8.2"]
18+
php-version: ["7.2", "7.3", "7.4", "8.0", "8.1", "8.2"]
1919
experimental: [false]
2020
composer-options: ['']
2121
os: [ubuntu-latest]

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## [Unreleased] -
44

5+
* Require php >= 7.2
6+
57
## [4.0.1] - 2021-06-10
68

79
* Fix TransNode constructor optional parameters

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"source": "https://github.com/phpmyadmin/twig-i18n-extension"
2121
},
2222
"require": {
23-
"php": "^7.1 || ^8.0",
23+
"php": "^7.2 || ^8.0",
2424
"twig/twig": "^1.42.3|^2.0|^3.0"
2525
},
2626
"require-dev": {

0 commit comments

Comments
 (0)