Skip to content

Commit 4bac941

Browse files
authored
PHP 8.5 support (#122)
1 parent 1986501 commit 4bac941

File tree

16 files changed

+24
-18
lines changed

16 files changed

+24
-18
lines changed

.github/workflows/composer-require-checker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ jobs:
3232
os: >-
3333
['ubuntu-latest']
3434
php: >-
35-
['8.1', '8.2', '8.3', '8.4']
35+
['8.1', '8.2', '8.3', '8.4', '8.5']
3636
required-packages: >-
3737
['data']

.github/workflows/mssql.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ jobs:
3434
- 8.2
3535
- 8.3
3636
- 8.4
37+
- 8.5
3738

3839
mssql:
3940
- server: 2022-latest

.github/workflows/mutation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
os: >-
3030
['ubuntu-latest']
3131
php: >-
32-
['8.3']
32+
['8.5']
3333
required-packages: >-
3434
['data']
3535
secrets:

.github/workflows/mysql.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ jobs:
4141
- 8.2
4242
- 8.3
4343
- 8.4
44+
- 8.5
4445

4546
mysql:
4647
- 5.7

.github/workflows/oracle.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ jobs:
4242
- 8.2
4343
- 8.3
4444
- 8.4
45+
- 8.5
4546

4647
oracle:
4748
- 18

.github/workflows/pgsql.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ jobs:
4141
- 8.2
4242
- 8.3
4343
- 8.4
44+
- 8.5
4445

4546
pgsql:
4647
- 9
@@ -52,6 +53,7 @@ jobs:
5253
- 15
5354
- 16
5455
- 17
56+
- 18
5557

5658
services:
5759
postgres:

.github/workflows/rector-cs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ jobs:
2424
token: ${{ secrets.YIISOFT_GITHUB_TOKEN }}
2525
with:
2626
repository: ${{ github.event.pull_request.head.repo.full_name }}
27-
php: '8.4'
27+
php: '8.1'
2828
required-packages: >-
2929
['data']

.github/workflows/sqlite.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ jobs:
3838
- 8.2
3939
- 8.3
4040
- 8.4
41+
- 8.5
4142

4243
steps:
4344
- name: Checkout.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Detailed build statuses:
2828

2929
## Requirements
3030

31-
- PHP 8.1 or higher.
31+
- PHP 8.1 - 8.5.
3232

3333
## Installation
3434

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"minimum-stability": "dev",
3131
"prefer-stable": true,
3232
"require": {
33-
"php": "8.1 - 8.4",
33+
"php": "8.1 - 8.5",
3434
"yiisoft/data": "dev-master",
3535
"yiisoft/db": "^2.0"
3636
},
@@ -43,12 +43,12 @@
4343
"spatie/phpunit-watcher": "^1.24",
4444
"vimeo/psalm": "^5.26.1 || ^6.9.1",
4545
"vlucas/phpdotenv": "^5.6.2",
46-
"yiisoft/cache": "^3.1",
4746
"yiisoft/db-mssql": "^2.0",
4847
"yiisoft/db-mysql": "^2.0",
4948
"yiisoft/db-oracle": "^2.0",
5049
"yiisoft/db-pgsql": "^2.0",
5150
"yiisoft/db-sqlite": "^2.0",
51+
"yiisoft/psr-dummy-provider": "^1.0.2",
5252
"yiisoft/test-support": "^3.0"
5353
},
5454
"autoload": {

0 commit comments

Comments
 (0)