From 75e0ce65302df207ecb8f250e007a319e1a2e181 Mon Sep 17 00:00:00 2001 From: icefox Date: Mon, 5 Jan 2026 10:43:08 -0300 Subject: [PATCH] update readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b00ecad..9f49b4e 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ A minimalistic Aspect-Oriented Programming (AOP) implementation for PHP that use ## Installation ```bash -composer install +composer install icefox/aspect ``` ## Usage @@ -62,7 +62,7 @@ $loader = AspectBuilder::begin() // list of class names ->withClasses([ MyClass::class ]) // namespace prefix - ->withNamespaces([ "MyApplication\" ]) + ->withNamespaces([ "MyApplication\\" ]) ->build($weaver) ->register(); ```