Skip to content

Commit 189162f

Browse files
authored
Merge pull request #769 from driehle/feat/php84
Allow PHP 8.4
2 parents a348893 + f4f5782 commit 189162f

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

.github/workflows/coding-standards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ jobs:
2525
name: "Coding Standards"
2626
uses: "doctrine/.github/.github/workflows/coding-standards.yml@6.0.0"
2727
with:
28-
php-version: "8.3"
28+
php-version: "8.4"

.github/workflows/composer-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ jobs:
1919
name: "Composer Lint"
2020
uses: "doctrine/.github/.github/workflows/composer-lint.yml@6.0.0"
2121
with:
22-
php-version: "8.3"
22+
php-version: "8.4"

.github/workflows/continuous-integration.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ jobs:
3232
- "8.1"
3333
- "8.2"
3434
- "8.3"
35+
- "8.4"
3536
dbal-version:
3637
- "3.3.0"
3738
dependencies:

.github/workflows/phpstan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ jobs:
2525
name: "Static Analysis"
2626
uses: "doctrine/.github/.github/workflows/phpstan.yml@6.0.0"
2727
with:
28-
php-version: "8.3"
28+
php-version: "8.4"

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2006-2023 Doctrine Project
1+
Copyright (c) 2006-2025 Doctrine Project
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
44
documentation files (the "Software"), to deal in the Software without restriction, including without limitation

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
],
1212
"homepage": "https://www.doctrine-project.org/",
1313
"require": {
14-
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
14+
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
1515
"ext-json": "*",
1616
"doctrine/dbal": "^3.3.2",
1717
"doctrine/doctrine-laminas-hydrator": "^3.2.0",
18-
"doctrine/doctrine-module": "^6.2.0",
18+
"doctrine/doctrine-module": "^6.3.0",
1919
"doctrine/event-manager": "^2.0.0",
2020
"doctrine/orm": "^2.13.0",
2121
"doctrine/persistence": "^3.0.0",

0 commit comments

Comments
 (0)