From 0431d7b4a6ce2ae1bffb29c1ced6d9e90a6af6dc Mon Sep 17 00:00:00 2001 From: megasteve19 Date: Sat, 15 Mar 2025 10:54:26 +0200 Subject: [PATCH 1/3] Resolves #69 --- .github/workflows/tests.yml | 7 +++++-- composer.json | 4 ++-- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 9bdc8a1..400d9be 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -7,16 +7,19 @@ on: - '*.x' pull_request: + jobs: run: runs-on: ubuntu-latest strategy: matrix: - php: [8.1, 8.2, 8.3] - laravel: [10, 11] + php: [ 8.1, 8.2, 8.3, 8.4 ] + laravel: [ 10, 11, 12 ] exclude: - php: '8.1' laravel: 11 + - php: '8.1' + laravel: 12 name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} diff --git a/composer.json b/composer.json index 62097de..eedfbe2 100644 --- a/composer.json +++ b/composer.json @@ -22,8 +22,8 @@ ], "require": { "php": "^8.1", - "illuminate/support": "^10.0|^11.0", - "illuminate/validation": "^10.0|^11.0", + "illuminate/support": "^10.0|^11.0|^12.0", + "illuminate/validation": "^10.0|^11.0|^12.0", "fakerphp/faker": "^1.21" }, "extra": { From 84587e5afc758232ceb81f4c009a6aef38ab5164 Mon Sep 17 00:00:00 2001 From: megasteve19 Date: Sat, 15 Mar 2025 11:02:04 +0200 Subject: [PATCH 2/3] Resolves #69 --- .github/workflows/tests.yml | 2 ++ README.md | 4 +++- composer.json | 6 +++--- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 400d9be..c8a99f0 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -20,6 +20,8 @@ jobs: laravel: 11 - php: '8.1' laravel: 12 + - php: '8.4' + laravel: 10 name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} diff --git a/README.md b/README.md index 6db669a..371d283 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,9 @@ Editor.php is a package designed to assist in parsing and manipulating the outpu # Version Table | Editor.php | Laravel | PHP | | --- | --- | --- | -| 1.x | 10.x ~ 11.x | 8.1 ~ 8.3 | +| 1.x | 10.x | 8.1 ~ 8.3 | +| 1.x | 11.x | 8.2 ~ 8.4 | +| 1.x | 12.x | 8.2 ~ 8.4 | # Quick Start diff --git a/composer.json b/composer.json index eedfbe2..65a3107 100644 --- a/composer.json +++ b/composer.json @@ -22,7 +22,7 @@ ], "require": { "php": "^8.1", - "illuminate/support": "^10.0|^11.0|^12.0", + "illuminate/support": "^12", "illuminate/validation": "^10.0|^11.0|^12.0", "fakerphp/faker": "^1.21" }, @@ -34,8 +34,8 @@ } }, "require-dev": { - "pestphp/pest": "^1.22.4|^2.0", - "orchestra/testbench": "^8.0|^9.0", + "pestphp/pest": "^1.22.4|^2.0|^3.0", + "orchestra/testbench": "^8.0|^9.0|^10.0", "friendsofphp/php-cs-fixer": "^3.14.4", "phpstan/phpstan": "^1.10" }, From 6b6b13cc815af7d761c4e9f56d293d918dadcc9a Mon Sep 17 00:00:00 2001 From: megasteve19 Date: Sat, 15 Mar 2025 11:10:59 +0200 Subject: [PATCH 3/3] Resolves #69 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 65a3107..8f66dba 100644 --- a/composer.json +++ b/composer.json @@ -22,7 +22,7 @@ ], "require": { "php": "^8.1", - "illuminate/support": "^12", + "illuminate/support": "^10.0|^11.0|^12.0", "illuminate/validation": "^10.0|^11.0|^12.0", "fakerphp/faker": "^1.21" },