Skip to content

Commit f1c08fd

Browse files
authored
Merge pull request #2 from not-empty/php83
php83 version
2 parents 32f0a0c + 2af874a commit f1c08fd

File tree

5 files changed

+38
-36
lines changed

5 files changed

+38
-36
lines changed

.github/workflows/php.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Setup PHP Action
1818
uses: shivammathur/setup-php@2.26.0
1919
with:
20-
php-version: 8.2
20+
php-version: 8.3
2121
extensions: dom
2222
coverage: xdebug
2323

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ PHP library to manage JWT authentication
1212

1313
### Installation
1414

15+
[Release 7.0.0](https://github.com/not-empty/jwt-manager-php-lib/releases/tag/7.0.0) Requires [PHP](https://php.net) 8.3
16+
1517
[Release 6.0.0](https://github.com/not-empty/jwt-manager-php-lib/releases/tag/6.0.0) Requires [PHP](https://php.net) 8.2
1618

1719
[Release 5.0.0](https://github.com/not-empty/jwt-manager-php-lib/releases/tag/5.0.0) Requires [PHP](https://php.net) 8.1
@@ -88,12 +90,12 @@ var_dump($result);
8890
if you want an environment to run or test it, you can build and install dependences like this
8991

9092
```sh
91-
docker build --build-arg PHP_VERSION=8.2-cli -t not-empty/jwt-manager-php-lib:php82 -f contrib/Dockerfile .
93+
docker build --build-arg PHP_VERSION=8.3-rc-cli -t not-empty/jwt-manager-php-lib:php83 -f contrib/Dockerfile .
9294
```
9395

9496
Access the container
9597
```sh
96-
docker run -v ${PWD}/:/var/www/html -it not-empty/jwt-manager-php-lib:php82 bash
98+
docker run -v ${PWD}/:/var/www/html -it not-empty/jwt-manager-php-lib:php83 bash
9799
```
98100

99101
Verify if all dependencies is installed
@@ -119,12 +121,12 @@ To ensure that the entire project is fine:
119121
First you need to building a correct environment to install all dependences
120122

121123
```sh
122-
docker build --build-arg PHP_VERSION=8.2-cli -t not-empty/jwt-manager-php-lib:php82 -f contrib/Dockerfile .
124+
docker build --build-arg PHP_VERSION=8.3-rc-cli -t not-empty/jwt-manager-php-lib:php83 -f contrib/Dockerfile .
123125
```
124126

125127
Access the container
126128
```sh
127-
docker run -v ${PWD}/:/var/www/html -it not-empty/jwt-manager-php-lib:php82 bash
129+
docker run -v ${PWD}/:/var/www/html -it not-empty/jwt-manager-php-lib:php83 bash
128130
```
129131

130132
Install all dependences

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "not-empty/jwt-manager-php-lib",
33
"description": "PHP library to manage JWT authentication",
4-
"version": "6.0.0",
4+
"version": "7.0.0",
55
"type": "library",
66
"license": "GPL-3.0-only",
77
"require": {
8-
"php": "^8.2"
8+
"php": "^8.3"
99
},
1010
"require-dev": {
1111
"phpunit/phpunit": "^9.6",

composer.lock

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

contrib/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG PHP_VERSION=8.2-cli
1+
ARG PHP_VERSION=8.3-rc-cli
22

33
FROM php:${PHP_VERSION}
44

0 commit comments

Comments
 (0)