Skip to content

Commit

Permalink
feat: laravel 10 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
Quadrubo committed Apr 22, 2023
1 parent c5b1ece commit 96744d0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,16 @@ jobs:
fail-fast: false
matrix:
php: [8.0, 8.1]
laravel: [9.*]
laravel: [10.*, 9.*]
dependency-version: [prefer-lowest, prefer-stable]
include:
- laravel: 10.*
testbench: 8.*
- laravel: 9.*
testbench: 7.*
exclude:
- laravel: 10.*
php: 8.0
name: Tests - PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - ${{ matrix.dependency-version }}
steps:
- name: Checkout code
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
"require": {
"php": "^8.0.2",
"guzzlehttp/guzzle": "^7.2",
"illuminate/support": "^9.0",
"illuminate/support": "^9.0|^10.0",
"openfoodfacts/openfoodfacts-php": "^0.2.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.6",
"orchestra/testbench": "^7.0",
"orchestra/testbench": "^7.0|^8.0",
"phpunit/phpunit": "^9.5.8"
},
"autoload": {
Expand Down

0 comments on commit 96744d0

Please sign in to comment.