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",