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

Add Laravel 11.x support #96

Closed
Closed
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
12 changes: 10 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,26 @@ jobs:
fail-fast: true
matrix:
php: [7.3, 7.4, '8.0', 8.1, 8.2, 8.3]
laravel: [8, 9, 10]
laravel: [8, 9, 10, 11]
exclude:
- php: 7.3
laravel: 9
- php: 7.3
laravel: 10
- php: 7.3
laravel: 11
- php: 7.4
laravel: 9
- php: 7.4
laravel: 10
- php: 7.4
laravel: 11
- php: 8.0
laravel: 10
- php: 8.0
laravel: 11
- php: 8.1
laravel: 11
- php: 8.2
laravel: 8
- php: 8.3
Expand Down Expand Up @@ -61,4 +69,4 @@ jobs:
composer update --prefer-dist --no-interaction --no-progress

- name: Execute unit tests
run: vendor/bin/pest --colors=always --verbose --group="unit"
run: vendor/bin/pest --colors=always --group="unit"
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@
}
],
"require": {
"php": "^7.3|^8.0",
"php": "^7.3|^8.0|^8.2",
"aws/aws-sdk-php": "^3.148.3",
"laravel/framework": "^8.0|^9.0|^10.0",
"symfony/yaml": "^5.1.4|^6.0"
"laravel/framework": "^8.0|^9.0|^10.0|^11.0",
"symfony/yaml": "^5.1.4|^6.0|^7.0"
},
"require-dev": {
"orchestra/testbench": "^6.17.1|^7.0|^8.0",
"pestphp/pest": "^1.22.3"
"orchestra/testbench": "^6.17.1|^7.0|^8.0|^9.0",
"pestphp/pest": "^1.22.3|^2.0"
},
"autoload": {
"psr-4": {
Expand Down
Loading