From bac4a5301d5861175d3c5cef908ad10cb4943600 Mon Sep 17 00:00:00 2001 From: Sam Reed Date: Tue, 19 Dec 2023 21:23:43 +0000 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 95d0b61..a83262f 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Peast Installation ------------- Include the following requirement to your composer.json: -``` +```json { "require": { "mck89/peast": "dev-master" @@ -27,8 +27,8 @@ Then in your script include the autoloader and you can start using Peast: ```php require_once "vendor/autoload.php"; -$source = "var a = 1"; //Your JavaScript code -$ast = Peast\Peast::latest($source, $options)->parse(); //Parse it! +$source = "var a = 1"; // Your JavaScript code +$ast = Peast\Peast::latest($source, $options)->parse(); // Parse it! ``` Known issues