Skip to content

Commit

Permalink
Remove support for PHP 7.2
Browse files Browse the repository at this point in the history
Remove support for PHP 7.2
  • Loading branch information
kelvinmo authored Dec 5, 2023
2 parents bf2cda4 + 94ac086 commit 766a9fa
Show file tree
Hide file tree
Showing 5 changed files with 110 additions and 114 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ jobs:
strategy:
matrix:
php-versions:
- 7.2
- 7.3
- 7.4
- 8.0
- 8.1
- 8.2
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to this project will be documented in this file.

## Unreleased

- Removed: Support for PHP 7.2

## 0.8.0

- Added: Support for `Ed25519` signatures and `X25519` key derviation
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ SimpleJWT is a simple JSON web token library written in PHP.

## Requirements

- PHP 7.2 or later
- PHP 7.3 or later
- `gmp` extension
- `hash` extension
- `openssl` extension
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"keywords": [ "jwt", "jwe", "jose" ],
"homepage": "https://github.com/kelvinmo/simplejwt",
"require": {
"php": "^7.2 || ^8.0",
"php": "^7.3 || ^8.0",
"ext-openssl": "*",
"ext-hash": "*",
"ext-gmp": "*",
Expand Down
Loading

0 comments on commit 766a9fa

Please sign in to comment.