Skip to content

Commit

Permalink
Merge pull request #5 from achertovsky/php83
Browse files Browse the repository at this point in the history
4.0.0 release with bumped php and phpunit versions
  • Loading branch information
achertovsky authored Jul 13, 2024
2 parents 59aefb6 + dcf34fe commit 95a0c50
Show file tree
Hide file tree
Showing 16 changed files with 594 additions and 468 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.1-cli-alpine
FROM php:8.3-cli-alpine

COPY --from=composer /usr/bin/composer /usr/bin/composer

Expand Down
9 changes: 9 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# 4.0.0
## Added
- PSR-20
## Fixed
- Fixed LSP
## Changed
- PHP version bumped to 8.3
- Upgraded phpunit version to 11

# 3.0.1
## Fixed
- `JwtManager` can handle random string and malformed tokens
Expand Down
11 changes: 9 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,24 @@
{
"name": "achertovsky/lib-jwt",
"version": "4.0.0",
"description": "JWT POPO library",
"require": {
"php": "^8.1"
"php": "^8.3",
"psr/clock": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpunit/phpunit": "^11",
"phpmd/phpmd" : "@stable",
"phpstan/phpstan": "@stable"
},
"autoload": {
"psr-4": {
"achertovsky\\jwt\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"achertovsky\\jwt\\tests\\": "tests/"
}
}
}
Loading

0 comments on commit 95a0c50

Please sign in to comment.