Skip to content

Commit 1c09c7a

Browse files
authored
Merge pull request #11 from not-empty/php83
Php83
2 parents f94f1a2 + 65dcf71 commit 1c09c7a

File tree

5 files changed

+46
-44
lines changed

5 files changed

+46
-44
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/[email protected]
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 using LUA script to send for redis a job for Taurus queue
1212

1313
### Installation
1414

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+
1517
[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
1618

1719
[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++) {
126128
if you want an environment to run or test it, you can build and install dependences like this
127129

128130
```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 .
130132
```
131133

132134
Access the container
133135
```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
135137
```
136138

137139
Verify if all dependencies is installed
@@ -157,12 +159,12 @@ To ensure that the entire project is fine:
157159
First you need to building a correct environment to install all dependences
158160

159161
```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 .
161163
```
162164

163165
Access the container
164166
```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
166168
```
167169

168170
Install all dependences

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "not-empty/taurus-publisher-php-lib",
33
"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",
55
"type": "library",
66
"license": "GPL-3.0-only",
77
"require": {
8-
"php": "^8.2",
8+
"php": "^8.3",
99
"predis/predis": "^1.1.10",
10-
"not-empty/ulid-php-lib" : "6.0.0"
10+
"not-empty/ulid-php-lib": "^7.0"
1111
},
1212
"require-dev": {
1313
"phpunit/phpunit": "^9.6",

composer.lock

Lines changed: 35 additions & 35 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)