Skip to content

Commit

Permalink
Merge pull request #6 from worksome/l10
Browse files Browse the repository at this point in the history
chore(deps): Laravel 10 support
  • Loading branch information
lukeraymonddowning authored Feb 1, 2023
2 parents 789721a + b756c9b commit c222d8c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,13 @@ jobs:
matrix:
os: [ubuntu-latest]
php: [8.2]
laravel: [9.*]
laravel: [9.*, 10.*]
stability: [prefer-lowest, prefer-stable]
include:
- laravel: 9.*
testbench: 7.*
- laravel: 10.*
testbench: 8.*

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}

Expand All @@ -39,7 +44,7 @@ jobs:
- name: Install dependencies
run: |
composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update --ansi
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update --ansi
composer update --${{ matrix.stability }} --prefer-dist --no-interaction --ansi
- name: Execute tests
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@
],
"require": {
"php": "^8.2",
"illuminate/contracts": "^9.46",
"illuminate/contracts": "^9.46|^10.0",
"laravel/horizon": "^5.10",
"open-telemetry/api": "^0.0.17",
"worksome/laravel-telemetry": "^0.2.4"
"worksome/laravel-telemetry": "^0.3"
},
"require-dev": {
"nunomaduro/collision": "^6.4",
"nunomaduro/larastan": "^1.0 || ^2.0",
"orchestra/testbench": "^7.18",
"orchestra/testbench": "^7.18|^8.0",
"pestphp/pest": "^1.21",
"pestphp/pest-plugin-parallel": "^1.0",
"worksome/coding-style": "^2.0",
Expand Down

0 comments on commit c222d8c

Please sign in to comment.