From 5e6a05e6ab57316a6481ef3e236b7e6364130a59 Mon Sep 17 00:00:00 2001 From: Woody Gilk <woody.gilk@gmail.com> Date: Sat, 21 Oct 2023 17:45:53 -0500 Subject: [PATCH] Require PHP 8.x --- CHANGELOG.md | 18 ++++++++++++++++++ composer.json | 6 +++--- 2 files changed, 21 insertions(+), 3 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..73427dc --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,18 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [2.0.0] - 2023-10-21 + +- Require PHP 8.x and PHPUnit 10.x #47 + +## [1.1.0] - 2023-10-21 + +- Final release that supports PHP 7.x. + +## [1.0.0] - 2023-10-10 + +- Add tests for streams #39 diff --git a/composer.json b/composer.json index 9e11136..2e628e7 100644 --- a/composer.json +++ b/composer.json @@ -12,13 +12,13 @@ "authors": [ { "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" + "homepage": "https://www.php-fig.org/" } ], "require": { - "php": "^7.1 || ^8.0", + "php": "^8.0", "psr/http-factory": "^1.0", - "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0 || ^10.0" + "phpunit/phpunit": "^10.0" }, "autoload": { "psr-4": { -- GitLab