Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 18 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,14 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [8.0, 8.1, 8.2, 8.3]
laravel: [9.*, 10.*, 11.*]
php: [8.0, 8.1, 8.2, 8.3, 8.4]
laravel: [9.*, 10.*, 11.*, 12.*]
dependency-version: [prefer-lowest, prefer-stable]
include:
- laravel: 12.*
testbench: 10.*
phpunit: 12.*

- laravel: 11.*
testbench: 9.*
phpunit: 11.*
Expand All @@ -25,15 +29,27 @@ jobs:
phpunit: 10.*

exclude:
- laravel: 12.*
php: 8.1

- laravel: 12.*
php: 8.0

- laravel: 11.*
php: 8.1

- laravel: 11.*
php: 8.0

- laravel: 10.*
php: 8.4

- laravel: 10.*
php: 8.0

- laravel: 9.*
php: 8.4

- laravel: 9.*
php: 8.3

Expand Down
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,13 @@ This package supports localization and can be used for most of the language. <br
- ```Laravel >= 9.0```


| GitHub | L6 | L7 | L8 | L9 | L10 | L11 |
|--------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|
| 1.5 | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :x: | :x: |
| 1.6 | :x: | :x: | :x: | :white_check_mark: | :white_check_mark: | :x: |
| 1.7 | :x: | :x: | :x: | :white_check_mark: | :white_check_mark: | :x: |
| 1.8 | :x: | :x: | :x: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
| GitHub | L6 | L7 | L8 | L9 | L10 | L11 | L12 |
|----------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|
| 1.5 | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :x: | :x: | :x: |
| 1.6 | :x: | :x: | :x: | :white_check_mark: | :white_check_mark: | :x: | :x: |
| 1.7 | :x: | :x: | :x: | :white_check_mark: | :white_check_mark: | :x: | :x: |
| 1.8.4 <= | :x: | :x: | :x: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :x: |
| 1.8.5 >= | :x: | :x: | :x: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |

# Installation

Expand Down
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,26 +14,26 @@
"regex"
],
"homepage": "https://github.com/milwad-dev/laravel-validate",
"minimum-stability": "dev",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "milwad khosravi",
"name": "Milwad Khosravi",
"email": "[email protected]",
"homepage": "https://github.com/milwad-dev",
"role": "Developer"
"role": "Author"
}
],
"require": {
"php": "^8.0",
"laravel/framework": "9.*|10.*|11.*",
"laravel/framework": "9.*|10.*|11.*|12.*",
"ext-bcmath": "*",
"ext-ctype": "*"
},
"require-dev": {
"imanghafoori/php-imports-analyzer": "1.0.*",
"orchestra/testbench": "^7.0|^8.0|^9.0",
"phpunit/phpunit": "^9.0|^10.0|^11.0"
"imanghafoori/php-imports-analyzer": "1.0",
"orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
"phpunit/phpunit": "^9.0|^10.0|^11.0|^12.0"
},
"autoload": {
"psr-4": {
Expand Down
Loading