After installing symfony/serializer I recognized that my symfony.lock file got changed:
diff --git a/symfony.lock b/symfony.lock
index ba6e23f..bfc391e 100644
--- a/symfony.lock
+++ b/symfony.lock
@@ -301,5 +301,8 @@
     },
     "symfony/asset": {
         "version": "v3.3.10"
+    },
+    "symfony/serializer": {
+        "version": "v3.3.13"
     }
 }
From what I understand, it was introduced with Symfony Flex, but how does it differ from composer.lock and why is it needed on top of that?
 
    