Skip to content

Commit

Permalink
laravel 11
Browse files Browse the repository at this point in the history
  • Loading branch information
denisdulici committed Apr 1, 2024
1 parent 519a983 commit ffaf4de
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,25 @@ jobs:

strategy:
matrix:
php: ['8.0', '8.1', '8.2']
laravel: [9.*, 10.*]
php: ['8.0', '8.1', '8.2', '8.3']
laravel: [9.*, 10.*, 11.*]
stability: [prefer-lowest, prefer-stable]
include:
- laravel: 9.*
testbench: 7.*
- laravel: 10.*
testbench: 8.*
- laravel: 11.*
testbench: 9.*
exclude:
- laravel: 9.*
php: 8.3
- laravel: 10.*
php: 8.0
- laravel: 11.*
php: 8.0
- laravel: 11.*
php: 8.1

steps:
- name: Checkout code
Expand All @@ -31,7 +39,7 @@ jobs:
with:
php-version: ${{ matrix.php }}
extensions: bcmath, ctype, dom, fileinfo, intl, gd, json, mbstring, pdo, pdo_sqlite, openssl, sqlite, xml, zip
coverage: none
coverage: xdebug

- name: Install dependencies
run: |
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@
"php": "^8.0",
"ext-json": "*",
"balping/json-raw-encoder": "^1.0",
"illuminate/support": "^9.0|^10.0"
"illuminate/support": "^9.0|^10.0|^11.0"
},
"require-dev": {
"mockery/mockery": "^1.5",
"phpunit/phpunit": "^9.5|^10.0",
"orchestra/testbench": "^7.4|^8.0"
"phpunit/phpunit": "^9.5|^10.0|^11.0",
"orchestra/testbench": "^7.4|^8.0|^9.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit ffaf4de

Please sign in to comment.