Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update readme #3

Merged
merged 2 commits into from
Aug 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"lazy initialization"
],
"homepage": "https://divengine.org",
"version": "1.1.0",
"version": "1.1.1",
"authors": [
{
"name": "Rafa Rodriguez",
Expand Down
5 changes: 2 additions & 3 deletions src/laze.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*
Expand All @@ -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
Expand All @@ -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.
Expand Down