From ce883b484320c214ccd5c03681a16b25d1bdfd0c Mon Sep 17 00:00:00 2001 From: Ivan Babenko Date: Tue, 18 Jun 2024 09:16:37 +0200 Subject: [PATCH] Update .gitignore and composer dependencies --- .gitignore | 1 + composer.json | 11 ++++------- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index 6f53677..4758b36 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,7 @@ /vendor /composer.lock /phpunit.xml +/.phpunit.cache /.phpunit.result.cache /.php_cs /.php_cs.cache diff --git a/composer.json b/composer.json index 5bd1527..c3b450e 100644 --- a/composer.json +++ b/composer.json @@ -38,14 +38,13 @@ } }, "require": { - "php": "^7.4 || ^8.0", - "babenkoivan/elastic-scout-driver": "v4.x-dev", - "babenkoivan/elastic-adapter": "v4.x-dev" + "php": "^8.2", + "babenkoivan/elastic-scout-driver": "^4.0" }, "require-dev": { "phpunit/phpunit": "^11.0", "orchestra/testbench": "^9.0", - "babenkoivan/elastic-migrations": "v4.x-dev", + "babenkoivan/elastic-migrations": "^4.0", "laravel/scout": "^10.0", "friendsofphp/php-cs-fixer": "^3.14", "phpstan/phpstan": "^1.10", @@ -63,7 +62,5 @@ "Elastic\\ScoutDriverPlus\\ServiceProvider" ] } - }, - "minimum-stability": "dev", - "prefer-stable" : true + } }