Skip to content

Commit

Permalink
Merge pull request #30 from milwad-dev/support-laravel-11
Browse files Browse the repository at this point in the history
[1.x] Support Laravel 11
  • Loading branch information
milwad-dev authored Mar 28, 2024
2 parents 745f49b + 4576263 commit 67f19a9
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 5 deletions.
22 changes: 20 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,35 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [8.2, 8.1, 8.0]
laravel: [10.*, 9.*]
php: [8.0, 8.1, 8.2, 8.3]
laravel: [9.*, 10.*, 11.*]
dependency-version: [prefer-lowest, prefer-stable]
include:
- laravel: 11.*
testbench: 9.*
phpunit: 11.*

- laravel: 10.*
testbench: 8.*
phpunit: 11.*

- laravel: 9.*
testbench: 7.*
phpunit: 10.*

exclude:
- laravel: 11.*
php: 8.1

- laravel: 11.*
php: 8.0

- laravel: 10.*
php: 8.0

- laravel: 9.*
php: 8.3

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}

steps:
Expand All @@ -38,5 +54,7 @@ jobs:
run: |
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" "symfony/console:>=4.3.4" "mockery/mockery:^1.3.2" "nesbot/carbon:>=2.62.1" --no-interaction --no-update
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction
- name: Execute tests
run: vendor/bin/phpunit

6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@
"require": {
"php": "^8.0",
"doctrine/dbal": "^3.6",
"laravel/framework": "9.*|10.*"
"laravel/framework": "^9.0|^10.0|^11.0"
},
"require-dev": {
"orchestra/testbench": "^7.0|^8.0",
"phpunit/phpunit": "^9.4"
"orchestra/testbench": "^7.0|^8.0|^9.0",
"phpunit/phpunit": "^9.0|^10.0|^11.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 67f19a9

Please sign in to comment.