From 73a62d6822696f149540bdeb90b5b4a44a2cf41a Mon Sep 17 00:00:00 2001 From: inmanturbo Date: Thu, 8 Aug 2024 19:45:46 +0000 Subject: [PATCH 1/5] Update CHANGELOG --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index afd84a4..20b780e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ # Changelog All notable changes to `modelware` will be documented in this file. + +## v1.0.0 - 2024-08-08 + +**Full Changelog**: https://github.com/inmanturbo/modelware/commits/v1.0.0 From dd2ce2c5430e29e445a658ea8d35b9229c3f53e2 Mon Sep 17 00:00:00 2001 From: inmanturbo <47095624+inmanturbo@users.noreply.github.com> Date: Thu, 8 Aug 2024 15:46:18 -0400 Subject: [PATCH 2/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e0fe18d..80929e2 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ Modelware::add(('eloquent.updating*', [ ], prefix: 'modelware'); // modelware is the default ``` -This package sends the event data through pilelines (similiar to middleware), which iterate through collections of invokable classes, these collections are bound into and resolved from the service container using the following syntax: +This package sends the event data through pipelines (similiar to middleware), which iterate through collections of invokable classes, these collections are bound into and resolved from the service container using the following syntax: ```php app()->bind("{$prefix}.{$event}", function () use ($pipes) { From d13ab91ba9ddd7d44b6344fd1544831fcc56b97c Mon Sep 17 00:00:00 2001 From: inmanturbo <47095624+inmanturbo@users.noreply.github.com> Date: Thu, 8 Aug 2024 15:47:22 -0400 Subject: [PATCH 3/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 80929e2..eb5802c 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ Modelware::add(('eloquent.updating*', [ ], prefix: 'modelware'); // modelware is the default ``` -This package sends the event data through pipelines (similiar to middleware), which iterate through collections of invokable classes, these collections are bound into and resolved from the service container using the following syntax: +This package sends the event data through [pilelines](https://laravel.com/docs/11.x/helpers#pipeline) (similiar to middleware), which iterate through collections of invokable classes, these collections are bound into and resolved from the service container using the following syntax: ```php app()->bind("{$prefix}.{$event}", function () use ($pipes) { From 6a622ad08b3e4d881d1b6725e47cbbf9cdb0014a Mon Sep 17 00:00:00 2001 From: inmanturbo <47095624+inmanturbo@users.noreply.github.com> Date: Thu, 8 Aug 2024 15:47:44 -0400 Subject: [PATCH 4/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index eb5802c..03ab277 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Add modelware in the boot method of a service provider ```php use Inmanturbo\Modelware\Facades\Modelware; -Modelware::add(('eloquent.updating*', [ +Modelware::add('eloquent.updating*', [ EnsureModelShouldBeSaved::class, ValidateAttributes::class, FillModel::class, From 59f68c69fce2dd7171af5ed5b6761da8c6d06180 Mon Sep 17 00:00:00 2001 From: inmanturbo <47095624+inmanturbo@users.noreply.github.com> Date: Thu, 8 Aug 2024 16:16:32 -0400 Subject: [PATCH 5/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 03ab277..204a268 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ Modelware::add('eloquent.updating*', [ ], prefix: 'modelware'); // modelware is the default ``` -This package sends the event data through [pilelines](https://laravel.com/docs/11.x/helpers#pipeline) (similiar to middleware), which iterate through collections of invokable classes, these collections are bound into and resolved from the service container using the following syntax: +This package sends the event data through [pipelines](https://laravel.com/docs/11.x/helpers#pipeline) (similiar to middleware), which iterate through collections of invokable classes, these collections are bound into and resolved from the service container using the following syntax: ```php app()->bind("{$prefix}.{$event}", function () use ($pipes) {