File tree Expand file tree Collapse file tree 5 files changed +46
-44
lines changed Expand file tree Collapse file tree 5 files changed +46
-44
lines changed Original file line number Diff line number Diff line change 17
17
- name : Setup PHP Action
18
18
uses :
shivammathur/[email protected]
19
19
with :
20
- php-version : 8.2
20
+ php-version : 8.3
21
21
extensions : dom
22
22
coverage : xdebug
23
23
Original file line number Diff line number Diff line change @@ -12,6 +12,8 @@ PHP library using LUA script to send for redis a job for Taurus queue
12
12
13
13
### Installation
14
14
15
+ [ Release 7.0.0] ( https://github.com/not-empty/taurus-publisher-php-lib/releases/tag/7.0.0 ) Requires [ PHP] ( https://php.net ) 8.3
16
+
15
17
[ Release 6.0.0] ( https://github.com/not-empty/taurus-publisher-php-lib/releases/tag/6.0.0 ) Requires [ PHP] ( https://php.net ) 8.2
16
18
17
19
[ Release 5.0.0] ( https://github.com/not-empty/taurus-publisher-php-lib/releases/tag/5.0.0 ) Requires [ PHP] ( https://php.net ) 8.1
@@ -126,12 +128,12 @@ for ($i=0; $i < 1000000; $i++) {
126
128
if you want an environment to run or test it, you can build and install dependences like this
127
129
128
130
``` sh
129
- docker build --build-arg PHP_VERSION=8.2- cli -t not-empty/taurus-publisher-php-lib:php82 -f contrib/Dockerfile .
131
+ docker build --build-arg PHP_VERSION=8.3-rc- cli -t not-empty/taurus-publisher-php-lib:php83 -f contrib/Dockerfile .
130
132
```
131
133
132
134
Access the container
133
135
``` sh
134
- docker run -v ${PWD} /:/var/www/html -it not-empty/taurus-publisher-php-lib:php82 bash
136
+ docker run -v ${PWD} /:/var/www/html -it not-empty/taurus-publisher-php-lib:php83 bash
135
137
```
136
138
137
139
Verify if all dependencies is installed
@@ -157,12 +159,12 @@ To ensure that the entire project is fine:
157
159
First you need to building a correct environment to install all dependences
158
160
159
161
``` sh
160
- docker build --build-arg PHP_VERSION=8.2- cli -t not-empty/taurus-publisher-php-lib:php82 -f contrib/Dockerfile .
162
+ docker build --build-arg PHP_VERSION=8.3-rc- cli -t not-empty/taurus-publisher-php-lib:php83 -f contrib/Dockerfile .
161
163
```
162
164
163
165
Access the container
164
166
``` sh
165
- docker run -v ${PWD} /:/var/www/html -it not-empty/taurus-publisher-php-lib:php82 bash
167
+ docker run -v ${PWD} /:/var/www/html -it not-empty/taurus-publisher-php-lib:php83 bash
166
168
```
167
169
168
170
Install all dependences
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " not-empty/taurus-publisher-php-lib" ,
3
3
"description" : " PHP library using LUA script to send for redis a job for Taurus queue" ,
4
- "version" : " 6 .0.0" ,
4
+ "version" : " 7 .0.0" ,
5
5
"type" : " library" ,
6
6
"license" : " GPL-3.0-only" ,
7
7
"require" : {
8
- "php" : " ^8.2 " ,
8
+ "php" : " ^8.3 " ,
9
9
"predis/predis" : " ^1.1.10" ,
10
- "not-empty/ulid-php-lib" : " 6.0 .0"
10
+ "not-empty/ulid-php-lib" : " ^7 .0"
11
11
},
12
12
"require-dev" : {
13
13
"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
2
2
3
3
FROM php:${PHP_VERSION}
4
4
You can’t perform that action at this time.
0 commit comments