Skip to content
This repository has been archived by the owner on Jul 3, 2024. It is now read-only.

Allow PHP 8.3 #182

Merged
merged 2 commits into from
Apr 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
- "8.0"
- "8.1"
- "8.2"
- "8.3"
dependencies:
- "highest"
- "lowest"
Expand Down
7 changes: 5 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
}
],
"require": {
"php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0",
"php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
"laminas/laminas-eventmanager": "^3.4",
"laminas/laminas-router": "^3.5",
"slm/queue": "^3.1",
Expand All @@ -36,7 +36,7 @@
},
"require-dev": {
"ext-sqlite3": "*",
"doctrine/doctrine-orm-module": "^4.1 || ^5.0",
"doctrine/doctrine-orm-module": "^4.1 || ^5.0 || ^6.0",
"laminas/laminas-modulemanager": "^2.11",
"laminas/laminas-view": "^2.13",
"laminas/laminas-log": "^2.15",
Expand All @@ -47,6 +47,9 @@
"phpunit/phpunit": "^9.3",
"squizlabs/php_codesniffer": "^3.6.2"
},
"conflict": {
"doctrine/cache": ">=2.0"
},
"suggest": {
"doctrine/doctrine-orm-module": "If you use Doctrine in combination with Laminas",
"roave/psr-container-doctrine": "Configures Doctrine services automatically."
Expand Down
2 changes: 1 addition & 1 deletion tests/laminas-runner/composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"require": {
"slm/queue-doctrine": "*",
"doctrine/doctrine-orm-module": "^4.1 || ^5.0"
"doctrine/doctrine-orm-module": "^4.1 || ^5.0 || ^6.0"
},
"replace": {
"laminas/laminas-cache-storage-adapter-apc": "*",
Expand Down
2 changes: 1 addition & 1 deletion tests/mezzio-runner/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"mezzio/mezzio": "^3.2.1",
"laminas/laminas-diactoros": "^2.3.0",
"laminas/laminas-config-aggregator": "^1.2",
"doctrine/doctrine-orm-module": "^4.1 || ^5.0"
"doctrine/doctrine-orm-module": "^4.1 || ^5.0 || ^6.0"
},
"replace": {
"laminas/laminas-cache-storage-adapter-apc": "*",
Expand Down
Loading