From 6ea53eedf6b7a55382e12ea3093d02d61dd858c8 Mon Sep 17 00:00:00 2001 From: lukinovec Date: Wed, 15 Feb 2023 13:41:18 +0100 Subject: [PATCH 1/4] Add L10 support --- .github/workflows/ci.yml | 2 +- composer.json | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1fa56d1..4131e16 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - laravel: [8, 9] + laravel: [8, 9, 10] steps: - uses: actions/checkout@v2 diff --git a/composer.json b/composer.json index 59561fc..9ce34eb 100644 --- a/composer.json +++ b/composer.json @@ -21,17 +21,17 @@ } }, "require": { - "php": "^8.0", - "illuminate/support": "^8.24|^9.0", - "archtechx/laravel-seo": "^0.3.2", + "php": "^8.1", + "illuminate/support": "^8.24|^9.0|^10.0", + "archtechx/laravel-seo": "^0.6", "ryangjchandler/orbit": "*", - "illuminate/routing": "^8.53|^9.0", - "illuminate/database": "^8.53|^9.0" + "illuminate/routing": "^8.53|^9.0|^10.0", + "illuminate/database": "^8.53|^9.0|^10.0" }, "require-dev": { - "orchestra/testbench": "^6.9|^7.0", - "pestphp/pest": "^1.2", - "pestphp/pest-plugin-laravel": "^1.0" + "orchestra/testbench": "^6.9|^7.0|^8.0", + "pestphp/pest": "^1.2|^2.0", + "pestphp/pest-plugin-laravel": "^1.0|^2.0" }, "extra": { "laravel": { From 1be6d996e03b52c685508ae360bf65f574bf2754 Mon Sep 17 00:00:00 2001 From: lukinovec Date: Wed, 15 Feb 2023 15:04:13 +0100 Subject: [PATCH 2/4] Set orbit version --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 9ce34eb..1e9aa0d 100644 --- a/composer.json +++ b/composer.json @@ -24,7 +24,7 @@ "php": "^8.1", "illuminate/support": "^8.24|^9.0|^10.0", "archtechx/laravel-seo": "^0.6", - "ryangjchandler/orbit": "*", + "ryangjchandler/orbit": "^1.2", "illuminate/routing": "^8.53|^9.0|^10.0", "illuminate/database": "^8.53|^9.0|^10.0" }, From cdb4b935c79e115267385adb4047ac696d0131b9 Mon Sep 17 00:00:00 2001 From: lukinovec Date: Wed, 15 Feb 2023 15:09:33 +0100 Subject: [PATCH 3/4] Allow pest-plugin --- composer.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 1e9aa0d..136841d 100644 --- a/composer.json +++ b/composer.json @@ -41,5 +41,10 @@ } }, "minimum-stability": "dev", - "prefer-stable": true + "prefer-stable": true, + "config": { + "allow-plugins": { + "pestphp/pest-plugin": true + } + } } From 45ba8a6dd2aab255d89ed9db6351af56742a1bb3 Mon Sep 17 00:00:00 2001 From: lukinovec Date: Wed, 15 Feb 2023 15:12:14 +0100 Subject: [PATCH 4/4] Update orbit version --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 136841d..0a0e94b 100644 --- a/composer.json +++ b/composer.json @@ -24,7 +24,7 @@ "php": "^8.1", "illuminate/support": "^8.24|^9.0|^10.0", "archtechx/laravel-seo": "^0.6", - "ryangjchandler/orbit": "^1.2", + "ryangjchandler/orbit": "*", "illuminate/routing": "^8.53|^9.0|^10.0", "illuminate/database": "^8.53|^9.0|^10.0" },