From 3ba44c3dabb81dc709e0007dcbfa47b291fcbc3b Mon Sep 17 00:00:00 2001 From: "Nek (Maxime Veber)" Date: Thu, 17 Dec 2020 21:51:51 +0100 Subject: [PATCH] update(php): allow usage of php 8 --- CHANGELOG.md | 4 ++++ composer.json | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 54f2429..9b3b2a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,10 +9,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [2.6.0] - 2020-12-17 ## Added - Ability to normalize or not the camelize text +- Support for PHP 8.x ## Changed - The camelize method normalize by default. It makes a lot of sense, but the old behavior changed, and it may break in some cases +# Removed +- Support for PHP 5.x + ## [2.5.1] - 2019-09-22 ### Changed - Camelize method now allow larger usages (thanks to removal of an exception) diff --git a/composer.json b/composer.json index 3a544d7..94cacc9 100644 --- a/composer.json +++ b/composer.json @@ -9,7 +9,7 @@ "psr-4": { "Nekland\\Utils\\Test\\": "tests/Nekland/Utils/" } }, "require": { - "php": "^5.6 || ^7.0" + "php": "^7.0 || ^8.0" }, "require-dev": { "phpspec/phpspec": "^3.2",