Skip to content

Commit fa924eb

Browse files
Remove PHP <7.4 support
Undoing the changes in #70 is too annoying right now, and it's high time everyone stopped using PHP <7.4 anyway. This is going to coincide with a major version bump.
1 parent b92d0e1 commit fa924eb

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ jobs:
99
strategy:
1010
matrix:
1111
operating-system: ['ubuntu-latest']
12-
php-versions: ['7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
12+
php-versions: ['7.4', '8.0', '8.1', '8.2', '8.3']
1313

14-
continue-on-error: ${{ matrix.php-versions == '8.2' }}
14+
continue-on-error: ${{ matrix.php-versions == '8.3' }}
1515

1616
steps:
1717
- name: Checkout
@@ -26,11 +26,11 @@ jobs:
2626
coverage: none
2727

2828
- name: Install Composer dependencies (PHP < 8.1)
29-
if: ${{ matrix.php-versions != '8.2' }}
29+
if: ${{ matrix.php-versions != '8.3' }}
3030
uses: "ramsey/composer-install@v1"
3131

3232
- name: Install Composer dependencies - ignore-platform-reqs (PHP 8.1)
33-
if: ${{ matrix.php-versions == '8.2' }}
33+
if: ${{ matrix.php-versions == '8.3' }}
3434
uses: "ramsey/composer-install@v1"
3535
with:
3636
composer-options: --ignore-platform-reqs

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
}
3636
},
3737
"require": {
38-
"php": "^7.1|^8",
38+
"php": "^7.4|^8",
3939
"ext-json": "*",
4040
"paragonie/constant_time_encoding": "^2",
4141
"psr/http-message": "^1|^2",

0 commit comments

Comments
 (0)