From 03f82bb1267d145eb7829108a2add2ff0104df34 Mon Sep 17 00:00:00 2001 From: rafageist Date: Wed, 14 Aug 2024 09:36:22 -0300 Subject: [PATCH 1/2] update readme installation instructions --- README.md | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/README.md b/README.md index 4d02510..1da8c30 100644 --- a/README.md +++ b/README.md @@ -12,16 +12,6 @@ You can install **laze** using Composer: composer require divengine/laze ``` -Or add it to your composer.json file: - -```json -{ - "require": { - "divengine/laze": "^1.0.0" - } -} -``` - ## Usage ### Defining a Lazy Constant From f74d07c2a934e4c61065a2f484800259a9b25b32 Mon Sep 17 00:00:00 2001 From: rafageist Date: Wed, 14 Aug 2024 09:38:05 -0300 Subject: [PATCH 2/2] minor fixes --- composer.json | 2 +- src/laze.php | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/composer.json b/composer.json index 6024b17..fee85f4 100644 --- a/composer.json +++ b/composer.json @@ -14,7 +14,7 @@ "lazy initialization" ], "homepage": "https://divengine.org", - "version": "1.1.0", + "version": "1.1.1", "authors": [ { "name": "Rafa Rodriguez", diff --git a/src/laze.php b/src/laze.php index 1ae5828..75282e8 100644 --- a/src/laze.php +++ b/src/laze.php @@ -7,7 +7,7 @@ /** * [[]] Div PHP Laze * - * A PHP library for defining lazy inmutable values. Values are set as closures + * A PHP library for defining lazy immutable values. Values are set as closures * and only materialize upon first access, ensuring efficient and controlled * initialization. * @@ -26,7 +26,6 @@ * * @package divengine/laze * @author Rafa Rodriguez @rafageist [https://rafageist.com] - * @version 1.1.0 * * @link https://divengine.org * @link https://github.com/divengine/div @@ -38,7 +37,7 @@ class laze * Version of the library. * @var string */ - private static string $__version = '1.1.0'; + private static string $__version = '1.1.1'; /** * Store for lazy immutable values.