Skip to content

Commit

Permalink
Merge pull request #3 from divengine/updateReadme
Browse files Browse the repository at this point in the history
Update readme
  • Loading branch information
rafageist authored Aug 14, 2024
2 parents c83e29e + f74d07c commit 2f14a8f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 14 deletions.
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

0 comments on commit 2f14a8f

Please sign in to comment.