Skip to content

Commit

Permalink
Merge pull request #8 from genkgo/drop_74
Browse files Browse the repository at this point in the history
drop php 7.4
  • Loading branch information
frederikbosch committed Mar 17, 2023
2 parents b6f53b3 + d765d71 commit 8f2bd53
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/code_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": "*"
},
Expand Down

0 comments on commit 8f2bd53

Please sign in to comment.