Skip to content

Commit

Permalink
Add support for laravel 11 (#172)
Browse files Browse the repository at this point in the history
* chore: add support for laravel 11

* chore: add phpunit v10

* chore: fix typo

* chore: remove verbose
  • Loading branch information
shuvroroy authored Feb 12, 2024
1 parent 80bd9af commit de372ea
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,10 @@ jobs:
fail-fast: true
matrix:
php: [7.3, 7.4, '8.0', 8.1, 8.2, 8.3]
laravel: [6, 7, 8, 9, 10]
laravel: [6, 7, 8, 9, 10, 11]
exclude:
- php: 7.3
laravel: 11
- php: 7.3
laravel: 9
- php: 7.3
Expand All @@ -27,8 +29,14 @@ jobs:
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.1
laravel: 6
- php: 8.1
Expand Down Expand Up @@ -67,4 +75,4 @@ jobs:
composer update --prefer-dist --no-interaction --no-progress
- name: Execute tests
run: vendor/bin/phpunit --verbose
run: vendor/bin/phpunit
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@
"ext-soap": "*"
},
"require-dev": {
"illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"mockery/mockery": "^1.3.3",
"orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0",
"phpunit/phpunit": "^9.5"
"orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"phpunit/phpunit": "^9.5|^10.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit de372ea

Please sign in to comment.