Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Laravel 10 support #13

Merged
merged 2 commits into from
Feb 27, 2023
Merged
Changes from 1 commit
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
Next Next commit
Laravel 10 support
  • Loading branch information
bastien-phi committed Feb 27, 2023

Verified

This commit was signed with the committer’s verified signature.
Exirel Florian Strzelecki
commit 7e55666ca1175131c8ee07e426aeebd65e52c09c
8 changes: 3 additions & 5 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
@@ -14,13 +14,11 @@ jobs:
matrix:
os: [ ubuntu-latest ]
php: [ 8.1, 8.2 ]
laravel: [ 9.* ]
laravel: [ 9.*, 10.* ]
stability: [ prefer-lowest, prefer-stable ]
include:
- laravel: 9.*
testbench: 7.*
exclude:
- php: 8.2
laravel: 9.*
stability: prefer-lowest

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
@@ -52,7 +50,7 @@ jobs:

- name: Install dependencies
run: |
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update
composer update --${{ matrix.stability }} --prefer-dist --no-interaction

- name: Execute tests
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@
],
"require": {
"php": "^8.1",
"illuminate/support": "^9.0",
"illuminate/support": "^9.0 || ^10.0",
"nesbot/carbon": "^2.0",
"phpstan/phpstan": "^1.4.5"
},