From 6af1949ebbc4846c50810b62b7fa5f2303e5a009 Mon Sep 17 00:00:00 2001 From: Akihito Koriyama Date: Sun, 7 Jul 2024 00:08:32 +0900 Subject: [PATCH] Improve README.md formatting The markdown formatting in the README.md file has been modified to ensure better readability. This mainly includes correcting the indentation in the code blocks under the "Installation" section. --- README.md | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 440e706..42c3319 100644 --- a/README.md +++ b/README.md @@ -21,23 +21,26 @@ A PHP extension that provides Aspect-Oriented Programming (AOP) functionality fo ## Installation 1. Clone the repository: - ``` + +``` git clone https://github.com/ray-di/ext-rayaop.git cd ext-rayaop - ``` +``` 2. Build and install the extension: - ``` + +``` phpize ./configure make make install - ``` +``` 3. Add the following line to your php.ini file: - ``` + +``` extension=rayaop.so - ``` +``` ## About this Extension @@ -164,5 +167,4 @@ make test TESTS="-v tests/your_specific_test.phpt" ``` Replace `your_specific_test.phpt` with the actual test file you want to run. -```