Skip to content

Commit

Permalink
Merge pull request #4 from cjmellor/laravel-11-compatability
Browse files Browse the repository at this point in the history
Laravel 11 Compatibility
  • Loading branch information
cjmellor authored Mar 24, 2024
2 parents d4cd8c2 + d613ea8 commit 7fe9669
Show file tree
Hide file tree
Showing 8 changed files with 1,847 additions and 1,328 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/run-pest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [ 8.2 ]
laravel: [ 10 ]
php: [ 8.2, 8.3 ]
stability: [ prefer-lowest, prefer-stable ]

name: "PHP: v${{ matrix.php }} [${{ matrix.stability }}]"
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@
}
],
"require": {
"php": "^8.2",
"illuminate/contracts": "^10.0"
"php": "^8.2|^8.3",
"illuminate/support": "^10.0|^11.0"
},
"require-dev": {
"nunomaduro/collision": "^7.0",
"orchestra/testbench": "^8.0",
"nunomaduro/collision": "^7.0|^8.0",
"orchestra/testbench": "^8.0|^9.0",
"phpunit/phpunit": "^10.0",
"pestphp/pest": "^2.0",
"pestphp/pest-plugin-arch": "^2.0",
Expand Down Expand Up @@ -60,7 +60,7 @@
"Engageify": "Cjmellor\\Engageify\\Facades\\Engageify"
}
},
"minimum-stability": "stable",
"minimum-stability": "dev",
"prefer-stable": true
}
}
Loading

0 comments on commit 7fe9669

Please sign in to comment.