From 800c50236497279f30db588c3f3cd60abd16d2b1 Mon Sep 17 00:00:00 2001 From: Milwad <98118400+milwad-dev@users.noreply.github.com> Date: Mon, 10 Feb 2025 23:29:24 +0330 Subject: [PATCH 1/3] Update composer.json --- composer.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/composer.json b/composer.json index 9e044da..1cb9bd5 100644 --- a/composer.json +++ b/composer.json @@ -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": "milwad.dev@gmail.com", "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": { From 8ab0789e3bdbee80d9954b34b74c643d30bb9de1 Mon Sep 17 00:00:00 2001 From: Milwad <98118400+milwad-dev@users.noreply.github.com> Date: Fri, 14 Feb 2025 00:25:43 +0330 Subject: [PATCH 2/3] Update README.md --- README.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index f8d2cfd..e27673a 100644 --- a/README.md +++ b/README.md @@ -23,12 +23,13 @@ This package supports localization and can be used for most of the language.
= 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 From 530fab907f6e1cd73dab780993f54764ae264c2e Mon Sep 17 00:00:00 2001 From: Milwad <98118400+milwad-dev@users.noreply.github.com> Date: Fri, 14 Feb 2025 00:29:59 +0330 Subject: [PATCH 3/3] Update run-tests.yml --- .github/workflows/run-tests.yml | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index b52221d..6ac7c29 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -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.* @@ -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