From c2589003c2397f6810a17376d475cd2f71edd375 Mon Sep 17 00:00:00 2001 From: Hamid Ghorashi Date: Tue, 15 Aug 2023 14:34:13 +0400 Subject: [PATCH] Change the version requirements --- .github/workflows/php.yml | 3 ++- README.md | 6 +++--- composer.json | 2 +- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index b130841..b987492 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -16,7 +16,8 @@ jobs: strategy: matrix: - laravel-version: [ "9.*", "8.*", "7.*", "6.*" ] # Add more versions as needed + php-version: [ 8.2, 8.1, 8.0, 7.4 ] + laravel-version: [ "10.*", "9.*", "8.*", "7.*", "6.*" ] steps: - uses: actions/checkout@v3 diff --git a/README.md b/README.md index 88fa025..386950d 100644 --- a/README.md +++ b/README.md @@ -6,9 +6,9 @@ [![Total Downloads](http://poser.pugx.org/jetcod/eloquent-repository/downloads?style=for-the-badge)](https://packagist.org/packages/jetcod/eloquent-repository) [![License](http://poser.pugx.org/jetcod/eloquent-repository/license?style=for-the-badge)](https://packagist.org/packages/jetcod/eloquent-repository) ### Requirements -* PHP ^7.3 or higher -* Laravel 5.6 or higher -* Eloquent 5.6 or higher +* PHP ^7.4 or higher +* Laravel 6.0 or higher +* Eloquent 6.0 or higher ### Installation You can install the library using Composer: diff --git a/composer.json b/composer.json index 7c3d86d..91cf56e 100644 --- a/composer.json +++ b/composer.json @@ -9,7 +9,7 @@ "sort-packages": true }, "require": { - "php": "^7.3|^8.0", + "php": "^7.4|^8.0", "illuminate/console": "^8.83|^9.0", "illuminate/contracts": "^8.83|^9.0", "illuminate/database": "^8.83|^9.0",