Skip to content

Commit 242f44e

Browse files
authored
Merge pull request #1155 from lcobucci/require-php-8.4
Require PHP 8.4
2 parents 8d8a39a + 8b402bc commit 242f44e

File tree

10 files changed

+14
-13
lines changed

10 files changed

+14
-13
lines changed

.github/workflows/backwards-compatibility.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: "Install PHP"
1919
uses: "shivammathur/setup-php@2.37.0"
2020
with:
21-
php-version: "8.3"
21+
php-version: "8.4"
2222
ini-values: memory_limit=-1
2323
tools: composer:v2, cs2pr
2424
env:

.github/workflows/benchmarks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
dependencies:
1616
- "locked"
1717
php-version:
18-
- "8.3"
18+
- "8.4"
1919
operating-system:
2020
- "ubuntu-latest"
2121

.github/workflows/coding-standards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
dependencies:
1616
- "locked"
1717
php-version:
18-
- "8.3"
18+
- "8.4"
1919
operating-system:
2020
- "ubuntu-latest"
2121

.github/workflows/composer-json-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
dependencies:
1616
- "highest"
1717
php-version:
18-
- "8.3"
18+
- "8.4"
1919
operating-system:
2020
- "ubuntu-latest"
2121

.github/workflows/mutation-tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
dependencies:
1616
- "locked"
1717
php-version:
18-
- "8.3"
18+
- "8.4"
1919
operating-system:
2020
- "ubuntu-latest"
2121

@@ -41,3 +41,5 @@ jobs:
4141

4242
- name: "Upload Code Coverage"
4343
uses: "codecov/codecov-action@v6.0.0"
44+
with:
45+
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/phpunit.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ jobs:
1717
- "highest"
1818
- "locked"
1919
php-version:
20-
- "8.3"
2120
- "8.4"
2221
- "8.5"
2322
operating-system:

.github/workflows/static-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
dependencies:
1616
- "locked"
1717
php-version:
18-
- "8.3"
18+
- "8.4"
1919
operating-system:
2020
- "ubuntu-latest"
2121

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![Latest Stable Version]](https://packagist.org/packages/lcobucci/jwt)
55
[![Unstable Version]](https://packagist.org/packages/lcobucci/jwt)
66

7-
[![Build Status]](https://github.com/lcobucci/jwt/actions?query=workflow%3A%22PHPUnit%20Tests%22+branch%3A4.1.x)
7+
[![Build Status]](https://github.com/lcobucci/jwt/actions?query=workflow%3A%22PHPUnit%20Tests%22+branch%3A6.0.x)
88
[![Code Coverage]](https://codecov.io/gh/lcobucci/jwt)
99

1010
A simple library to work with JSON Web Token and JSON Web Signature based on the [RFC 7519](https://tools.ietf.org/html/rfc7519).
@@ -26,5 +26,5 @@ The documentation is available at <https://lcobucci-jwt.readthedocs.io/en/latest
2626
[Total Downloads]: https://img.shields.io/packagist/dt/lcobucci/jwt.svg?style=flat-square
2727
[Latest Stable Version]: https://img.shields.io/packagist/v/lcobucci/jwt.svg?style=flat-square
2828
[Unstable Version]: https://img.shields.io/packagist/vpre/lcobucci/jwt.svg?style=flat-square
29-
[Build Status]: https://img.shields.io/github/actions/workflow/status/lcobucci/jwt/phpunit.yml?branch=5.1.x&style=flat-square
29+
[Build Status]: https://img.shields.io/github/actions/workflow/status/lcobucci/jwt/phpunit.yml?branch=6.0.x&style=flat-square
3030
[Code Coverage]: https://codecov.io/gh/lcobucci/jwt/branch/5.1.x/graph/badge.svg

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
}
1818
],
1919
"require": {
20-
"php": "~8.3.0 || ~8.4.0 || ~8.5.0",
20+
"php": "~8.4.0 || ~8.5.0",
2121
"ext-openssl": "*",
2222
"ext-sodium": "*",
2323
"psr/clock": "^1.0"

composer.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)