Skip to content

Commit 967462c

Browse files
authored
Merge pull request #161 from Roave/php_85
Add PHP 8.5 support, drop PHP < 8.4
2 parents 17fa999 + c5d7d5a commit 967462c

7 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/coding-standards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- name: Setup PHP, with composer and extensions
1111
uses: shivammathur/setup-php@2.35.5
1212
with:
13-
php-version: 8.3
13+
php-version: 8.4
1414
coverage: pcov
1515
tools: cs2pr
1616

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- name: Setup PHP with composer require checker
1111
uses: shivammathur/setup-php@2.35.5
1212
with:
13-
php-version: 8.3
13+
php-version: 8.4
1414
tools: composer-require-checker
1515

1616
- name: Cache composer dependencies

.github/workflows/roave-bc-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Setup PHP, with composer and extensions
1313
uses: shivammathur/setup-php@2.35.5
1414
with:
15-
php-version: 8.3
15+
php-version: 8.4
1616
coverage: pcov
1717
tools: cs2pr
1818

.github/workflows/static-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- name: Setup PHP, with composer and extensions
1111
uses: shivammathur/setup-php@2.35.5
1212
with:
13-
php-version: 8.3
13+
php-version: 8.4
1414
coverage: pcov
1515
tools: cs2pr
1616

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ jobs:
66
strategy:
77
matrix:
88
php-version:
9-
- '8.3'
109
- '8.4'
10+
- '8.5'
1111
dependencies:
1212
- 'locked'
1313
- 'latest'

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@
1616
],
1717
"homepage": "https://github.com/Roave/psr-container-doctrine",
1818
"require": {
19-
"php": "~8.3.0 || ~8.4.0",
19+
"php": "~8.4.0 || ~8.5.0",
2020
"doctrine/common": "^3.5.0",
2121
"doctrine/dbal": "^4.3.4",
2222
"doctrine/event-manager": "^2.0.1",
2323
"doctrine/migrations": "^3.9.4",
2424
"doctrine/orm": "^3.5.2",
25-
"doctrine/persistence": "^3.4.0 || ^4.1.0",
25+
"doctrine/persistence": "^3.4.0 || ^4.1.1",
2626
"psr/cache": "^2.0.0 || ^3.0.0",
2727
"psr/container": "^1.1.2 || ^2.0.2"
2828
},
@@ -50,7 +50,7 @@
5050
"ocramius/package-versions": true
5151
},
5252
"platform": {
53-
"php": "8.3.99"
53+
"php": "8.4.99"
5454
},
5555
"sort-packages": true
5656
}

composer.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)