Skip to content

Commit 8db2e44

Browse files
committed
php83 version
1 parent d83dcc6 commit 8db2e44

5 files changed

Lines changed: 69 additions & 66 deletions

File tree

.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 for put all database result in cache
1212

1313
### Installation
1414

15+
[Release 7.0.0](https://github.com/not-empty/database-cache-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/database-cache-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/database-cache-php-lib/releases/tag/5.0.0) Requires [PHP](https://php.net) 8.1
@@ -56,12 +58,12 @@ var_dump($data);
5658
if you want an environment to run or test it, you can build and install dependences like this
5759

5860
```sh
59-
docker build --build-arg PHP_VERSION=8.2-cli -t not-empty/database-cache-php-lib:php82 -f contrib/Dockerfile .
61+
docker build --build-arg PHP_VERSION=8.3-rc-cli -t not-empty/database-cache-php-lib:php83 -f contrib/Dockerfile .
6062
```
6163

6264
Access the container
6365
```sh
64-
docker run -v ${PWD}/:/var/www/html -it not-empty/database-cache-php-lib:php82 bash
66+
docker run -v ${PWD}/:/var/www/html -it not-empty/database-cache-php-lib:php83 bash
6567
```
6668

6769
Verify if all dependencies is installed
@@ -87,12 +89,12 @@ To ensure that the entire project is fine:
8789
First you need to building a correct environment to install all dependences
8890

8991
```sh
90-
docker build --build-arg PHP_VERSION=8.2-cli -t not-empty/database-cache-php-lib:php82 -f contrib/Dockerfile .
92+
docker build --build-arg PHP_VERSION=8.3-rc-cli -t not-empty/database-cache-php-lib:php83 -f contrib/Dockerfile .
9193
```
9294

9395
Access the container
9496
```sh
95-
docker run -v ${PWD}/:/var/www/html -it not-empty/database-cache-php-lib:php82 bash
97+
docker run -v ${PWD}/:/var/www/html -it not-empty/database-cache-php-lib:php83 bash
9698
```
9799

98100
Install all dependences

composer.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "not-empty/database-cache-php-lib",
33
"description": "PHP library for put all database result in cache",
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": "^2.2"
1010
},
1111
"authors": [
@@ -47,6 +47,7 @@
4747
"phpunit/phpunit": "^9.6",
4848
"mockery/mockery": "^1.6",
4949
"squizlabs/php_codesniffer": "^3.7",
50-
"phpmd/phpmd": "^2.14"
50+
"phpmd/phpmd": "^2.14",
51+
"pdepend/pdepend": "2.15.*"
5152
}
5253
}

0 commit comments

Comments
 (0)