Skip to content

Commit

Permalink
Adding Laravel v11 Support
Browse files Browse the repository at this point in the history
  • Loading branch information
arcanedev-maroc committed Mar 17, 2024
1 parent c490b94 commit de4f3b6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [8.2]
php: [8.2, 8.3]
dependency-version: [prefer-lowest, prefer-stable]

name: PHP ${{ matrix.php }} - ${{ matrix.dependency-version }}
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@
"type": "library",
"license": "MIT",
"require": {
"php": "^8.1",
"php": "^8.2",
"illuminate/contracts": "^11.0",
"illuminate/support": "^11.0"
},
"require-dev": {
"laravel/framework": "^11.0",
"orchestra/testbench-core": "^9.0",
"phpunit/phpunit": "^10.0"
"phpunit/phpunit": "^10.5"
},
"autoload": {
"psr-4": {
Expand Down
3 changes: 3 additions & 0 deletions src/Validation/Rule.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
* Class Rule
*
* @author ARCANEDEV <[email protected]>
*
* @deprecated Use the ValidationRule class instead.
* @see \Illuminate\Contracts\Validation\ValidationRule
*/
abstract class Rule implements RuleContract
{
Expand Down

0 comments on commit de4f3b6

Please sign in to comment.