Skip to content

Commit dcade38

Browse files
Merge pull request ARCANEDEV#46 from ARCANEDEV/develop
Laravel v11 Support
2 parents 5326ed2 + de4f3b6 commit dcade38

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
fail-fast: true
1111
matrix:
12-
php: [8.1, 8.2]
12+
php: [8.2, 8.3]
1313
dependency-version: [prefer-lowest, prefer-stable]
1414

1515
name: PHP ${{ matrix.php }} - ${{ matrix.dependency-version }}

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@
1313
"type": "library",
1414
"license": "MIT",
1515
"require": {
16-
"php": "^8.1",
17-
"illuminate/contracts": "^10.0",
18-
"illuminate/support": "^10.0"
16+
"php": "^8.2",
17+
"illuminate/contracts": "^11.0",
18+
"illuminate/support": "^11.0"
1919
},
2020
"require-dev": {
21-
"laravel/framework": "^10.0",
22-
"orchestra/testbench-core": "^8.0",
23-
"phpunit/phpunit": "^10.0"
21+
"laravel/framework": "^11.0",
22+
"orchestra/testbench-core": "^9.0",
23+
"phpunit/phpunit": "^10.5"
2424
},
2525
"autoload": {
2626
"psr-4": {
@@ -40,7 +40,7 @@
4040
},
4141
"extra": {
4242
"branch-alias": {
43-
"dev-develop": "10.x-dev"
43+
"dev-develop": "11.x-dev"
4444
}
4545
},
4646
"config": {

src/Validation/Rule.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
* Class Rule
1111
*
1212
* @author ARCANEDEV <arcanedev.maroc@gmail.com>
13+
*
14+
* @deprecated Use the ValidationRule class instead.
15+
* @see \Illuminate\Contracts\Validation\ValidationRule
1316
*/
1417
abstract class Rule implements RuleContract
1518
{

0 commit comments

Comments
 (0)