summaryrefslogtreecommitdiff
path: root/src/JsonManifestParser.php
diff options
context:
space:
mode:
authorSam Light <sam@lightscale.co.uk>2025-03-30 22:22:27 +0100
committerSam Light <samlight1994@gmail.com>2025-03-30 22:22:27 +0100
commit41eda0c73d0a1f5273ccacac57176f450c294e04 (patch)
treecf2caf6cfc247784823906da2d8b4115886d9171 /src/JsonManifestParser.php
parent5ed1fd22ac92e78c3feae6b1c33df35f3d3cab60 (diff)
Some basic structure
Diffstat (limited to 'src/JsonManifestParser.php')
-rw-r--r--src/JsonManifestParser.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/JsonManifestParser.php b/src/JsonManifestParser.php
new file mode 100644
index 0000000..9293af1
--- /dev/null
+++ b/src/JsonManifestParser.php
@@ -0,0 +1,13 @@
+<?php
+
+namespace Lightscale\LaralightAssets;
+
+use Lightscale\LaralightAssets\Contracts\ManifestParser;
+
+class JsonManifestParser implements ManifestParser
+{
+ public function parse(string $data): array
+ {
+ return json_decode($data, true);
+ }
+}