File tree Expand file tree Collapse file tree 5 files changed +38
-36
lines changed Expand file tree Collapse file tree 5 files changed +38
-36
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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);
8890if 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
9496Access 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
99101Verify if all dependencies is installed
@@ -119,12 +121,12 @@ To ensure that the entire project is fine:
119121First 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
125127Access 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
130132Install all dependences
Original file line number Diff line number Diff line change 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" ,
Original file line number Diff line number Diff line change 1- ARG PHP_VERSION=8.2 -cli
1+ ARG PHP_VERSION=8.3-rc -cli
22
33FROM php:${PHP_VERSION}
44
You can’t perform that action at this time.
0 commit comments