Updated versions for supported PLDM types

Updated the base.cpp to include version details for the PLDM PLATFORM
(v1.1.1) and BIOS (v1.0.0) details which initially only had PLDM BASE
(v1.0.0) type version defined.

Change-Id: If06e3b7ba89947580f3c600912005e436c6611f9
Signed-off-by: Zahed Hossain <zahzahed@in.ibm.com>
diff --git a/libpldmresponder/base.cpp b/libpldmresponder/base.cpp
index 37b4a63..48ccd54 100644
--- a/libpldmresponder/base.cpp
+++ b/libpldmresponder/base.cpp
@@ -20,6 +20,8 @@
 
 static const std::map<Type, ver32_t> versions{
     {PLDM_BASE, {0xF1, 0xF0, 0xF0, 0x00}},
+    {PLDM_PLATFORM, {0xF1, 0xF1, 0xF1, 0x00}},
+    {PLDM_BIOS, {0xF1, 0xF0, 0xF0, 0x00}},
 };
 
 Response getPLDMTypes(const pldm_msg* request, size_t payloadLength)