diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a34500..76cc134 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ -# Version 2.0.0 (not released yet) +# Version 3.0.0 (2016-05-18) -* Update `defuse/php-encryption` to `2.0.0` (not released yet either) +* Set minimum PHP version to 7.0 +* Use strict_types + +# Version 2.0.0 (2016-05-18) + +* Update `defuse/php-encryption` to `2.0.0` +* Use `paragonie/constant_time_encoding` # Version 1.1.0 diff --git a/composer.json b/composer.json index de126c8..ee93996 100644 --- a/composer.json +++ b/composer.json @@ -28,11 +28,11 @@ ] }, "require": { + "php": ">= 7.0", "defuse/php-encryption": "^2.0", - "paragonie/random_compat": "^1|^2", - "paragonie/constant_time_encoding": "^1|^2" + "paragonie/constant_time_encoding": "^2" }, "require-dev": { - "defuse/php-encryption": "^2.0" + "phpunit/phpunit": "^5|^6" } } diff --git a/src/PasswordLock.php b/src/PasswordLock.php index d1d9f61..4ec9fb0 100644 --- a/src/PasswordLock.php +++ b/src/PasswordLock.php @@ -1,4 +1,5 @@