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

Commit

Permalink
Allow PHP 8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
eivydas committed Apr 4, 2024
1 parent 8c76820 commit aee5ec8
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 6 deletions.
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
18 changes: 14 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,17 @@
}
],
"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",
"slm/queue": "dev-feature/php8.3",
"doctrine/dbal": "^3.1.2",
"doctrine/annotations": "^1.8",
"laminas/laminas-config": "^3.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,13 +47,23 @@
"phpunit/phpunit": "^9.3",
"squizlabs/php_codesniffer": "^3.6.2"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/eivydas/SlmQueue",
"canonical": true
}
],
"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."
},
"extra": {
"branch-alias": {
"dev-master": "3.1.x-dev"
"dev-feature/php8.3": "3.1.x-dev"
},
"laminas": {
"module": "SlmQueueDoctrine\\Module",
Expand Down
7 changes: 6 additions & 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 All @@ -14,6 +14,11 @@
"laminas/laminas-cache-storage-adapter-zend-server": "*"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/eivydas/SlmQueue",
"canonical": true
},
{
"type": "path",
"url": "../.."
Expand Down
7 changes: 6 additions & 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 All @@ -17,6 +17,11 @@
"laminas/laminas-cache-storage-adapter-zend-server": "*"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/eivydas/SlmQueue",
"canonical": true
},
{
"type": "path",
"url": "../.."
Expand Down

0 comments on commit aee5ec8

Please sign in to comment.