Skip to content

Commit

Permalink
Add php 8.4 to tests workflow (#324)
Browse files Browse the repository at this point in the history
* Add php 8.4 to tests workflow

* Move `kwn/php-rdkafka-stubs` to suggests section

* wip
  • Loading branch information
mateusjunges authored Dec 19, 2024
1 parent 53d5e2f commit 1176f3b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

strategy:
matrix:
php: [8.3, 8.2]
php: [8.4, 8.3, 8.2]
laravel: [11.*, 10.*]
dependency-version: [prefer-stable]
include:
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "A kafka driver for laravel",
"type": "library",
"require": {
"php": "^8.2|^8.3",
"php": "^8.2|^8.3|^8.4",
"ext-rdkafka": "^6.0",
"monolog/monolog": "^3",
"mateusjunges/avro-serde-php": "^3.0",
Expand All @@ -15,7 +15,6 @@
"orchestra/testbench": "^7.16|^8.0",
"predis/predis": "^1",
"friendsofphp/php-cs-fixer": "^3.64",
"kwn/php-rdkafka-stubs": "^2.2.1",
"rector/rector": "^0.19.8"
},
"minimum-stability": "dev",
Expand Down Expand Up @@ -49,6 +48,7 @@
}
},
"suggest": {
"ext-pcntl": "Required to enable all features of the kafka consumer"
"ext-pcntl": "Required to enable all features of the kafka consumer",
"kwn/php-rdkafka-stubs": "Useful for providing IDE autocompletion and static analysis when working with Kafka, version ^2.2.1."
}
}

0 comments on commit 1176f3b

Please sign in to comment.