Skip to content

Commit

Permalink
Drop PHP 8.1 because motranslator requires PHP 8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
williamdes committed Jan 7, 2025
1 parent cd2a03a commit 23db94d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/lint-and-analyse-php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up PHP 8.1
- name: Set up PHP 8.2
uses: shivammathur/setup-php@v2
with:
php-version: 8.1
php-version: 8.2

- name: Validate composer.json and composer.lock
run: composer validate --strict
Expand All @@ -33,10 +33,10 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up PHP 8.1
- name: Set up PHP 8.2
uses: shivammathur/setup-php@v2
with:
php-version: 8.1
php-version: 8.2

- name: Install Composer dependencies
uses: ramsey/composer-install@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ jobs:
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
php-version: ['8.1', '8.2', '8.3']
php-version: ['8.2', '8.3', '8.4']
experimental: [false]
composer-options: ['']
os: [ubuntu-latest]
include:
- { php-version: '8.4', composer-options: '--ignore-platform-req=php+', experimental: true, os: ubuntu-latest }
- { php-version: '8.5', composer-options: '--ignore-platform-req=php+', experimental: true, os: ubuntu-latest }
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## [Unreleased]

* Drop support for Twig < 3.17.0
* Drop support for PHP 7.2, PHP 7.3, PHP 7.4 and PHP 8.0
* Drop support for PHP 7.2, PHP 7.3, PHP 7.4, PHP 8.0 and PHP 8.1

## [4.1.3] - 2024-09-08

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"source": "https://github.com/phpmyadmin/twig-i18n-extension"
},
"require": {
"php": "^8.1",
"php": "^8.2",
"twig/twig": "^3.17"
},
"require-dev": {
Expand Down

0 comments on commit 23db94d

Please sign in to comment.