Skip to content

Commit

Permalink
Laravel 10.x Compatibility (#470)
Browse files Browse the repository at this point in the history
  • Loading branch information
laravel-shift authored Feb 15, 2023
1 parent 52ae20a commit 820e7f1
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 11 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,13 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-20.04]
php: [8.2, 8.1, 8.0]
laravel: [9.*]
php: [8.2, 8.1]
laravel: [10.*, 9.*]
ffmpeg: [5.0, 4.4]
dependency-version: [prefer-lowest, prefer-stable]
include:
- laravel: 10.*
testbench: 8.*
- laravel: 9.*
testbench: 7.*

Expand Down
18 changes: 9 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,18 @@
}
],
"require": {
"php": "^8.0|^8.1|^8.2",
"illuminate/contracts": "^9.0",
"php": "^8.1|^8.2",
"illuminate/contracts": "^9.0|^10.0",
"php-ffmpeg/php-ffmpeg": "^1.1",
"ramsey/collection": "^1.2.2"
"ramsey/collection": "^1.0|^2.0"
},
"require-dev": {
"league/flysystem-memory": "^3.0",
"mockery/mockery": "^1.3.3",
"nesbot/carbon": "^2.63",
"orchestra/testbench": "^7.0",
"league/flysystem-memory": "^3.10",
"mockery/mockery": "^1.4.4",
"nesbot/carbon": "^2.66",
"orchestra/testbench": "^7.0|^8.0",
"phpunit/phpunit": "^9.5.10",
"spatie/image": "^2.0",
"spatie/image": "^2.2",
"spatie/phpunit-snapshot-assertions": "^4.2"
},
"autoload": {
Expand Down Expand Up @@ -63,4 +63,4 @@
}
}
}
}
}

0 comments on commit 820e7f1

Please sign in to comment.