diff --git a/.github/workflows/code_checks.yml b/.github/workflows/code_checks.yml index f47dbea..6ab6cc4 100644 --- a/.github/workflows/code_checks.yml +++ b/.github/workflows/code_checks.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php: ['7.4', '8.0', '8.1', '8.2'] + php: ['8.0', '8.1', '8.2'] name: PHP ${{ matrix.php }} tests steps: diff --git a/README.md b/README.md index efd9936..f4b2cbd 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ Stream a ZIP file (memory efficient) as a PSR-7 message. ## Installation -Use composer to add the package to your dependencies. Support PHP versions: 7.4, 8.0, 8.1, 8.2. +Use composer to add the package to your dependencies. Supports [every PHP version that is receiving security updates](https://www.php.net/supported-versions.php). ```sh composer require genkgo/archive-stream ``` @@ -78,7 +78,7 @@ $response = new StreamedResponse(function () use ($stream) { ## Requirements - * PHP >=7.3.0 + * PHP version actively receiving security updates * gmp extension * psr/http-message diff --git a/composer.json b/composer.json index e4043ae..d49e5fd 100644 --- a/composer.json +++ b/composer.json @@ -6,7 +6,7 @@ "homepage": "https://github.com/genkgo/archive-stream", "license": "MIT", "require": { - "php": "^7.4 || ~8.0.0 || ~8.1.0 || ~8.2.0", + "php": "~8.0.0 || ~8.1.0 || ~8.2.0", "psr/http-message": "~1.0.0", "ext-gmp": "*" },