<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Mohammad Mehdi Sharifi</title>
    <description>The latest articles on DEV Community by Mohammad Mehdi Sharifi (@smmehdisharifi).</description>
    <link>https://dev.to/smmehdisharifi</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F2082803%2F403f6087-38a7-490c-bab1-2d6dd3f2cecf.png</url>
      <title>DEV Community: Mohammad Mehdi Sharifi</title>
      <link>https://dev.to/smmehdisharifi</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/smmehdisharifi"/>
    <language>en</language>
    <item>
      <title>JSON vs MessagePack in Laravel: A Practical API Benchmark</title>
      <dc:creator>Mohammad Mehdi Sharifi</dc:creator>
      <pubDate>Fri, 11 Sep 2026 13:07:34 +0000</pubDate>
      <link>https://dev.to/smmehdisharifi/json-vs-messagepack-in-laravel-a-practical-api-benchmark-3od9</link>
      <guid>https://dev.to/smmehdisharifi/json-vs-messagepack-in-laravel-a-practical-api-benchmark-3od9</guid>
      <description>&lt;p&gt;JSON is the right default for most Laravel APIs. It is readable, supported everywhere, easy to debug, and familiar to every client.&lt;/p&gt;

&lt;p&gt;MessagePack is worth considering when payload size, bandwidth, or a controlled client ecosystem matters. It is a compact binary format that keeps a schema-free data model, but it is not automatically faster or smaller for every workload.&lt;/p&gt;

&lt;p&gt;This article compares both formats in a Laravel API and shows how to adopt MessagePack without breaking existing JSON clients.&lt;/p&gt;

&lt;p&gt;The examples use &lt;a href="https://github.com/smmehdisharifi/laravel-msgpack" rel="noopener noreferrer"&gt;Laravel Msgpack&lt;/a&gt;, an open-source package that adds opt-in MessagePack content negotiation, request decoding, safety limits, and a repeatable benchmark command.&lt;/p&gt;

&lt;h2&gt;
  
  
  The short answer
&lt;/h2&gt;

&lt;p&gt;Use JSON when:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Your clients include browsers, third-party integrations, or unknown consumers.&lt;/li&gt;
&lt;li&gt;Human-readable responses and simple debugging are important.&lt;/li&gt;
&lt;li&gt;Your payloads are already small or compressed effectively.&lt;/li&gt;
&lt;li&gt;You do not control the client decoder and deployment environment.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Use MessagePack when:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;You control the clients and can ship a binary decoder.&lt;/li&gt;
&lt;li&gt;Network transfer size is important for mobile, edge, or internal services.&lt;/li&gt;
&lt;li&gt;Your payloads are large enough for serialization and decoding trade-offs to matter.&lt;/li&gt;
&lt;li&gt;You want to keep JSON compatibility while allowing capable clients to opt in.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For many Laravel applications, the best answer is not choosing one format globally. Keep JSON as the default and negotiate MessagePack per request.&lt;/p&gt;

&lt;h2&gt;
  
  
  What are we comparing?
&lt;/h2&gt;

&lt;p&gt;JSON is a text representation. It is self-describing, easy to inspect, and supported by the web platform.&lt;/p&gt;

&lt;p&gt;MessagePack is a binary representation. It encodes the same basic data model using compact type markers and lengths instead of textual punctuation and names repeated in a text format.&lt;/p&gt;

&lt;p&gt;The comparison should use the same data, the same PHP runtime, and the same operation count. Otherwise, the result is a benchmark of different workloads rather than a comparison of formats.&lt;/p&gt;

&lt;h2&gt;
  
  
  Add MessagePack to Laravel
&lt;/h2&gt;

&lt;p&gt;Install the package:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;composer require smmehdisharifi/laravel-msgpack
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Apply the middleware to a route or route group:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight php"&gt;&lt;code&gt;&lt;span class="kn"&gt;use&lt;/span&gt; &lt;span class="nc"&gt;Illuminate\Support\Facades\Route&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

&lt;span class="nc"&gt;Route&lt;/span&gt;&lt;span class="o"&gt;::&lt;/span&gt;&lt;span class="nf"&gt;middleware&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s1"&gt;'msgpack'&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;&lt;span class="o"&gt;-&amp;gt;&lt;/span&gt;&lt;span class="nf"&gt;get&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s1"&gt;'/api/profile'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="k"&gt;function&lt;/span&gt; &lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;
        &lt;span class="s1"&gt;'id'&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="mi"&gt;1042&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
        &lt;span class="s1"&gt;'name'&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="s1"&gt;'Laravel MessagePack'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
        &lt;span class="s1"&gt;'roles'&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="s1"&gt;'maintainer'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="s1"&gt;'developer'&lt;/span&gt;&lt;span class="p"&gt;],&lt;/span&gt;
        &lt;span class="s1"&gt;'features'&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;
            &lt;span class="s1"&gt;'negotiation'&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="kc"&gt;true&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
            &lt;span class="s1"&gt;'fallback'&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="s1"&gt;'json'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
        &lt;span class="p"&gt;],&lt;/span&gt;
    &lt;span class="p"&gt;];&lt;/span&gt;
&lt;span class="p"&gt;});&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The route does not need separate JSON and MessagePack controllers. Existing clients continue to receive JSON:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;curl &lt;span class="nt"&gt;-i&lt;/span&gt; http://localhost/api/profile
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;A capable client opts into MessagePack with the &lt;code&gt;Accept&lt;/code&gt; header. Save the binary response instead of printing it as terminal text:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;curl &lt;span class="nt"&gt;-sS&lt;/span&gt; &lt;span class="nt"&gt;-D&lt;/span&gt; - &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-H&lt;/span&gt; &lt;span class="s1"&gt;'Accept: application/msgpack'&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-o&lt;/span&gt; profile.msgpack &lt;span class="se"&gt;\&lt;/span&gt;
  http://localhost/api/profile
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The negotiated response includes:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight http"&gt;&lt;code&gt;&lt;span class="err"&gt;Content-Type: application/msgpack
Vary: Accept
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;code&gt;Vary: Accept&lt;/code&gt; is important because a cache must not serve a MessagePack response to a client that asked for JSON, or the other way around.&lt;/p&gt;

&lt;h2&gt;
  
  
  How content negotiation works
&lt;/h2&gt;

&lt;p&gt;The middleware keeps the migration opt-in:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;A client that does not request MessagePack receives JSON.&lt;/li&gt;
&lt;li&gt;A client that sends &lt;code&gt;Accept: application/msgpack&lt;/code&gt; receives a binary response when the route supports the middleware.&lt;/li&gt;
&lt;li&gt;If both formats are accepted, the higher quality factor wins.&lt;/li&gt;
&lt;li&gt;Wildcards are evaluated by media-type specificity.&lt;/li&gt;
&lt;li&gt;A request that rejects every supported representation receives &lt;code&gt;406 Not Acceptable&lt;/code&gt;.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The same negotiation applies to relevant error responses, including unmatched routes and route exceptions. Incoming requests can use &lt;code&gt;application/msgpack&lt;/code&gt; or the legacy &lt;code&gt;application/x-msgpack&lt;/code&gt; media type.&lt;/p&gt;

&lt;h2&gt;
  
  
  Run a repeatable benchmark
&lt;/h2&gt;

&lt;p&gt;Laravel Msgpack includes an Artisan command so the comparison is easy to reproduce:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;php artisan msgpack:benchmark &lt;span class="nt"&gt;--iterations&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;1000 &lt;span class="nt"&gt;--json&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The command uses a deterministic API-shaped fixture with nested values and Unicode text. It measures:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Raw JSON and MessagePack byte size.&lt;/li&gt;
&lt;li&gt;Encode time per iteration.&lt;/li&gt;
&lt;li&gt;Decode time per iteration.&lt;/li&gt;
&lt;li&gt;Optional gzip size and compression timings when &lt;code&gt;ext-zlib&lt;/code&gt; is available.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The command warms each operation once before timing it. It reports per-iteration timings so runs with different iteration counts remain comparable.&lt;/p&gt;

&lt;h2&gt;
  
  
  Results from this package
&lt;/h2&gt;

&lt;p&gt;The following result was produced by the package benchmark on PHP 8.4 with &lt;code&gt;rybakit/msgpack&lt;/code&gt; 0.7.2 and 1,000 iterations:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Measurement&lt;/th&gt;
&lt;th&gt;JSON&lt;/th&gt;
&lt;th&gt;MessagePack&lt;/th&gt;
&lt;th&gt;Difference&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Raw payload&lt;/td&gt;
&lt;td&gt;591 B&lt;/td&gt;
&lt;td&gt;435 B&lt;/td&gt;
&lt;td&gt;26.40% smaller&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Encode time&lt;/td&gt;
&lt;td&gt;0.002 ms&lt;/td&gt;
&lt;td&gt;0.009 ms&lt;/td&gt;
&lt;td&gt;JSON faster&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Decode time&lt;/td&gt;
&lt;td&gt;0.003 ms&lt;/td&gt;
&lt;td&gt;0.008 ms&lt;/td&gt;
&lt;td&gt;JSON faster&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Gzip payload&lt;/td&gt;
&lt;td&gt;377 B&lt;/td&gt;
&lt;td&gt;371 B&lt;/td&gt;
&lt;td&gt;1.59% smaller&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Gzip compress time&lt;/td&gt;
&lt;td&gt;0.009 ms&lt;/td&gt;
&lt;td&gt;0.010 ms&lt;/td&gt;
&lt;td&gt;Nearly equal&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Gzip decompress time&lt;/td&gt;
&lt;td&gt;0.004 ms&lt;/td&gt;
&lt;td&gt;0.003 ms&lt;/td&gt;
&lt;td&gt;Nearly equal&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;There are three useful conclusions here.&lt;/p&gt;

&lt;p&gt;First, MessagePack is noticeably smaller before compression for this fixture. That can matter when transfer size is the bottleneck.&lt;/p&gt;

&lt;p&gt;Second, the smallest representation is not automatically the fastest representation. For this small payload, JSON serialization is faster in the measured run.&lt;/p&gt;

&lt;p&gt;Third, compression changes the size comparison. Once gzip is applied, the gap is much smaller because gzip already removes a lot of JSON's repetitive syntax.&lt;/p&gt;

&lt;p&gt;These are indicative measurements, not universal promises. A real decision should use payloads, client runtimes, compression settings, and network conditions that match your application.&lt;/p&gt;

&lt;h2&gt;
  
  
  Decode MessagePack requests
&lt;/h2&gt;

&lt;p&gt;MessagePack request bodies are decoded automatically when the middleware is applied:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight php"&gt;&lt;code&gt;&lt;span class="kn"&gt;use&lt;/span&gt; &lt;span class="nc"&gt;Illuminate\Http\Request&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

&lt;span class="nc"&gt;Route&lt;/span&gt;&lt;span class="o"&gt;::&lt;/span&gt;&lt;span class="nf"&gt;middleware&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s1"&gt;'msgpack'&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;&lt;span class="o"&gt;-&amp;gt;&lt;/span&gt;&lt;span class="nf"&gt;post&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s1"&gt;'/api/profile'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="k"&gt;function&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="kt"&gt;Request&lt;/span&gt; &lt;span class="nv"&gt;$request&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;
        &lt;span class="s1"&gt;'received'&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="nv"&gt;$request&lt;/span&gt;&lt;span class="o"&gt;-&amp;gt;&lt;/span&gt;&lt;span class="nf"&gt;msgpack&lt;/span&gt;&lt;span class="p"&gt;(),&lt;/span&gt;
        &lt;span class="s1"&gt;'name'&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="nv"&gt;$request&lt;/span&gt;&lt;span class="o"&gt;-&amp;gt;&lt;/span&gt;&lt;span class="nf"&gt;input&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s1"&gt;'name'&lt;/span&gt;&lt;span class="p"&gt;),&lt;/span&gt;
    &lt;span class="p"&gt;];&lt;/span&gt;
&lt;span class="p"&gt;});&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Map payloads are also merged into Laravel's normal request input. The original decoded value remains available through &lt;code&gt;request()-&amp;gt;msgpack()&lt;/code&gt;, including scalar and list payloads.&lt;/p&gt;

&lt;p&gt;The package rejects malformed payloads before they reach the route handler. Configurable request size, nesting-depth, and value-count guards provide additional protection against oversized or unexpectedly deep input.&lt;/p&gt;

&lt;h2&gt;
  
  
  When a route must always return MessagePack
&lt;/h2&gt;

&lt;p&gt;Negotiation is useful when the same endpoint serves different clients. For a route that should always return MessagePack, use the response macro:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight php"&gt;&lt;code&gt;&lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="nf"&gt;response&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt;&lt;span class="o"&gt;-&amp;gt;&lt;/span&gt;&lt;span class="nf"&gt;msgpack&lt;/span&gt;&lt;span class="p"&gt;([&lt;/span&gt;
    &lt;span class="s1"&gt;'message'&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="s1"&gt;'Created'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
&lt;span class="p"&gt;],&lt;/span&gt; &lt;span class="mi"&gt;201&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;
    &lt;span class="s1"&gt;'X-Request-Id'&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="nv"&gt;$requestId&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
&lt;span class="p"&gt;]);&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Direct serialization is also available through the facade:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight php"&gt;&lt;code&gt;&lt;span class="kn"&gt;use&lt;/span&gt; &lt;span class="nc"&gt;Msgpack&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

&lt;span class="nv"&gt;$packed&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nc"&gt;Msgpack&lt;/span&gt;&lt;span class="o"&gt;::&lt;/span&gt;&lt;span class="nf"&gt;encode&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nv"&gt;$data&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="nv"&gt;$unpacked&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nc"&gt;Msgpack&lt;/span&gt;&lt;span class="o"&gt;::&lt;/span&gt;&lt;span class="nf"&gt;decode&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nv"&gt;$packed&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  A practical decision guide
&lt;/h2&gt;

&lt;p&gt;Do not change every endpoint to MessagePack because a synthetic benchmark produced a smaller payload. Instead, measure the part of the system that matters.&lt;/p&gt;

&lt;p&gt;Choose JSON first when interoperability, browser support, observability, or simple debugging is the priority.&lt;/p&gt;

&lt;p&gt;Test MessagePack when bandwidth, payload volume, or mobile transfer cost is important and the clients are controlled.&lt;/p&gt;

&lt;p&gt;Keep both formats when you serve a mixed ecosystem. JSON remains the safe default, while clients that understand MessagePack can opt into it without a second controller implementation.&lt;/p&gt;

&lt;h2&gt;
  
  
  Limitations to keep in mind
&lt;/h2&gt;

&lt;p&gt;MessagePack is not encryption. Sensitive data still needs transport security and application-level authorization.&lt;/p&gt;

&lt;p&gt;Binary responses are less convenient to inspect in logs and command-line terminals. Save them to a file or decode them with a client library.&lt;/p&gt;

&lt;p&gt;Compression may reduce the practical size advantage. Measure compressed and uncompressed responses for the transport configuration you actually deploy.&lt;/p&gt;

&lt;p&gt;The benchmark fixture is intentionally stable, not universal. A list-heavy payload, a text-heavy payload, a large nested object, or a response with repeated keys can produce different results.&lt;/p&gt;

&lt;h2&gt;
  
  
  Try it in your project
&lt;/h2&gt;

&lt;p&gt;Install &lt;a href="https://github.com/smmehdisharifi/laravel-msgpack" rel="noopener noreferrer"&gt;Laravel Msgpack&lt;/a&gt;, apply the &lt;code&gt;msgpack&lt;/code&gt; middleware to one endpoint, and compare both representations with your real data.&lt;/p&gt;

&lt;p&gt;The repository contains the full implementation, compatibility matrix, configuration reference, safety limits, and benchmark command:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/smmehdisharifi/laravel-msgpack" rel="noopener noreferrer"&gt;https://github.com/smmehdisharifi/laravel-msgpack&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If the package helps your API, &lt;a href="https://github.com/smmehdisharifi/laravel-msgpack/stargazers" rel="noopener noreferrer"&gt;a GitHub star&lt;/a&gt; helps other Laravel developers discover it.&lt;/p&gt;

</description>
      <category>api</category>
      <category>laravel</category>
      <category>performance</category>
      <category>php</category>
    </item>
  </channel>
</rss>
