Skip to content

Commit

Permalink
Laravel 10.x Compatibility (#5)
Browse files Browse the repository at this point in the history
* Bump dependencies for Laravel 10

* Update GitHub Actions for Laravel 10

* add exclude

* .?

---------

Co-authored-by: Craig Morris <craig.morris@gosuperscript.com>
  • Loading branch information
laravel-shift and morrislaptop committed Mar 2, 2023
1 parent 3fb9a04 commit e241193
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,12 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest]
php: [8.0]
laravel: [8.*, 9.*]
php: [8.0, 8.1]
laravel: [8.*, 9.*, 10.*]
stability: [prefer-lowest, prefer-stable]
exclude:
- laravel: 10.*
php: 8.0

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

Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,19 @@
],
"require": {
"php": "^8.0",
"illuminate/contracts": "^8.0|^9.0",
"illuminate/contracts": "^8.67|^9.0|^10.0",
"morrislaptop/symfony-custom-normalizers": "^0.4|^0.5",
"symfony/property-access": "^5.2|^6.0",
"symfony/property-info": "^5.2|^6.0",
"symfony/serializer": "^5.2|^6.0"
},
"require-dev": {
"brick/money": "^0.5.1",
"brick/money": "^0.5.1|^0.8",
"friendsofphp/php-cs-fixer": "^3.8",
"mockery/mockery": "^1.4",
"orchestra/testbench": "^6.18|^7.0",
"orchestra/testbench": "^6.18|^7.0|^8.0",
"phpunit/phpunit": "^9.3",
"vimeo/psalm": "^4.4"
"vimeo/psalm": "^4.4|^5.6"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit e241193

Please sign in to comment.