diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 635e1bb..3137cbc 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -8,19 +8,14 @@ jobs: strategy: matrix: os: [ubuntu-latest] - php: [8.3, 8.2, 8.1] - laravel: [9.*, 10.*, 11.*] + php: [8.4, 8.3, 8.2] + laravel: [11.*, 12.*] dependency-version: [prefer-stable] include: - - laravel: 9.* - testbench: 7.* - - laravel: 10.* - testbench: 8.* - laravel: 11.* testbench: 9.* - exclude: - - laravel: 11.* - php: 8.1 + - laravel: 12.* + testbench: 10.* name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - ${{ matrix.dependency-version }} diff --git a/README.md b/README.md index 7cad540..6410b03 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@
@@ -21,7 +21,7 @@ Imagine that now you want to do the same action that you do in an endpoint on a With this package you **define the validation once** and can **reuse it where you need**, making your application more **maintainable** and **decoupled**. -## Documentation +## Documentation [![Docs Button]][Docs Link] [![DocsRepo Button]][DocsRepo Link] ## Installation diff --git a/composer.json b/composer.json index 945f96d..8d8ecc6 100644 --- a/composer.json +++ b/composer.json @@ -30,18 +30,18 @@ } ], "require": { - "php": "^8.1", - "illuminate/console": "^9.0|^10.0|^11.0|^12.0", - "illuminate/database": "^9.0|^10.0|^11.0|^12.0", - "illuminate/http": "^9.0|^10.0|^11.0|^12.0", - "illuminate/support": "^9.0|^10.0|^11.0|^12.0", - "illuminate/validation": "^9.0|^10.0|^11.0|^12.0" + "php": "^8.2", + "illuminate/console": "^11.0|^12.0", + "illuminate/database": "^11.0|^12.0", + "illuminate/http": "^11.0|^12.0", + "illuminate/support": "^11.0|^12.0", + "illuminate/validation": "^11.0|^12.0" }, "require-dev": { - "laravel/pint": "^1.14", - "orchestra/testbench": "^7.0|^8.0|^9.0|^10.0", - "pestphp/pest": "^1.20|^2.0", - "pestphp/pest-plugin-faker": "^1.0|^2.0" + "laravel/pint": "^1.21", + "orchestra/testbench": "^9.0|^10.0", + "pestphp/pest": "^2.0|^3.0", + "pestphp/pest-plugin-faker": "^2.0|^3.0" }, "scripts": { "lint": "pint",