From 0a311288d41bfd6f65ee1a4edde5aba584a2f272 Mon Sep 17 00:00:00 2001 From: Akihito Koriyama Date: Tue, 9 Jul 2024 00:21:34 +0900 Subject: [PATCH] Add technical information section in README A new section called "Technical Information" has been added to the README file. This section includes a class diagram link, providing visualization of class interrelationships. The diagram was created using the php-class-diagram tool. Thanks @smeghead san! --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index a70e2421..0749e105 100644 --- a/README.md +++ b/README.md @@ -244,6 +244,10 @@ SevericeLocator::setReader(new AttributeReader);` * See also the DI framework [Ray.Di](https://github.com/ray-di/Ray.Di) which integrates DI and AOP. +## Techical Information + +* [Class Diagram](https://ray-di.github.io/Ray.Aop/images/php-class-diagram.svg) - Class interrelationship diagram created by [php-class-diagram](https://github.com/smeghead/php-class-diagram). + --- * Note: This documentation of the part is taken from [Guice/AOP](https://github.com/google/guice/wiki/AOP).