Skip to content

Commit

Permalink
Merge pull request #46 from ARCANEDEV/develop
Browse files Browse the repository at this point in the history
Laravel v11 Support
  • Loading branch information
arcanedev-maroc authored Mar 17, 2024
2 parents 5326ed2 + de4f3b6 commit dcade38
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 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.1, 8.2]
php: [8.2, 8.3]
dependency-version: [prefer-lowest, prefer-stable]

name: PHP ${{ matrix.php }} - ${{ matrix.dependency-version }}
Expand Down
14 changes: 7 additions & 7 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",
"illuminate/contracts": "^10.0",
"illuminate/support": "^10.0"
"php": "^8.2",
"illuminate/contracts": "^11.0",
"illuminate/support": "^11.0"
},
"require-dev": {
"laravel/framework": "^10.0",
"orchestra/testbench-core": "^8.0",
"phpunit/phpunit": "^10.0"
"laravel/framework": "^11.0",
"orchestra/testbench-core": "^9.0",
"phpunit/phpunit": "^10.5"
},
"autoload": {
"psr-4": {
Expand All @@ -40,7 +40,7 @@
},
"extra": {
"branch-alias": {
"dev-develop": "10.x-dev"
"dev-develop": "11.x-dev"
}
},
"config": {
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 dcade38

Please sign in to comment.