Skip to content

Commit

Permalink
Merge pull request #43 from ably/feature/support-laravel-11
Browse files Browse the repository at this point in the history
Support laravel 11
  • Loading branch information
sacOO7 authored Mar 13, 2024
2 parents 68dc28c + a412fae commit 2ac5cb2
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
14 changes: 13 additions & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
fail-fast: false
matrix:
php-version: [7.2, 7.3, 7.4, 8.0, 8.1, 8.2]
laravel-version: [6.*, 7.*, 8.*, 9.*, 10.*]
laravel-version: [6.*, 7.*, 8.*, 9.*, 10.*, 11.*]
include:
- laravel-version: 6.*
testbench: 4.*
Expand All @@ -29,8 +29,20 @@ jobs:
testbench: 7.*
- laravel-version: 10.*
testbench: 8.*
- laravel-version: 11.*
testbench: 9.*

exclude:
- laravel-version: 11.*
php-version: 7.2
- laravel-version: 11.*
php-version: 7.3
- laravel-version: 11.*
php-version: 7.4
- laravel-version: 11.*
php-version: 8.0
- laravel-version: 11.*
php-version: 8.1
- laravel-version: 10.*
php-version: 7.2
- laravel-version: 10.*
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
"require": {
"php": "^7.2 || ^8.0",
"ably/ably-php": "^1.1",
"illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0",
"illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0",
"ext-json" : "*"
},
"require-dev": {
"phpunit/phpunit": "^8.5 || ^9.5 || ^10.0",
"orchestra/testbench": "4.* || 8.*"
"phpunit/phpunit": "^8.5 || ^9.5 || ^10.0 || ^11.0",
"orchestra/testbench": "4.* || 8.* || 9.*"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 2ac5cb2

Please sign in to comment.