From 7d811980e5414a6918fc16c4d6f75c24da628931 Mon Sep 17 00:00:00 2001 From: Jasper Tey Date: Sun, 24 Mar 2024 21:04:31 -0400 Subject: [PATCH] Make Laravel 10.17 minimum required version. --- .github/workflows/run-tests.yml | 4 ++-- composer.json | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index e238028..f951963 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -14,13 +14,13 @@ jobs: matrix: os: [ubuntu-latest, windows-latest] php: [8.3, 8.2, 8.1] - laravel: [11.*, 10.*] + laravel: [11.*, 10.17.*] stability: [prefer-lowest, prefer-stable] include: - laravel: 11.* testbench: 9.* carbon: ^3.0 - - laravel: 10.* + - laravel: 10.17.* testbench: 8.* carbon: ^2.63 exclude: diff --git a/composer.json b/composer.json index ac0fbca..b3fa864 100644 --- a/composer.json +++ b/composer.json @@ -19,8 +19,9 @@ ], "require": { "php": "^8.1|^8.2|^8.3", - "spatie/laravel-package-tools": "^1.13.0", - "illuminate/contracts": "^10.0|^11.0" + "illuminate/contracts": "^10.17|^11.0", + "laravel/prompts": "^0.1.16", + "spatie/laravel-package-tools": "^1.13.0" }, "require-dev": { "laravel/pint": "^1.0",