Skip to content

Commit 3a7fef3

Browse files
committed
Add Laravel 8 support
1 parent c88195b commit 3a7fef3

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

.travis.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,14 @@ php:
77

88
env:
99
matrix:
10+
- Laravel=8.x
1011
- Laravel=7.x
1112
- Laravel=6.x
1213
- Laravel=5.8.x
14+
matrix:
15+
exclude:
16+
# Unsupported combinations
17+
- { env: Laravel=8.x, php: 7.2 }
1318

1419
install:
1520
- travis_retry composer require --dev "laravel/framework:${Laravel}" --no-interaction

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77

88
# Useful Laravel Validation Rules
99

10-
A collection of Laravel validation rules.
10+
A collection of useful Laravel validation rules.
1111

1212
## Requirements
1313

14-
PHP >= 7.2, Laravel `>=5.8 | 6.x | 7.x`.
14+
PHP >= 7.2, Laravel `>=5.8 | 6.x | 7.x | 8.x`.
1515

1616
## Installation
1717

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
"require": {
2222
"php": "^7.2",
2323
"ext-mbstring": "*",
24-
"illuminate/contracts": "5.8.* || ^6.0 || ^7.0",
25-
"illuminate/support": "5.8.* || ^6.0 || ^7.0"
24+
"illuminate/contracts": "5.8.* || ^6.0 || ^7.0 || ^8.0",
25+
"illuminate/support": "5.8.* || ^6.0 || ^7.0 || ^8.0"
2626
},
2727
"require-dev": {
2828
"orchestra/testbench": ">=3.8",

0 commit comments

Comments
 (0)