From b345914ca54de8cfb48acd2ec7dee5c6c4311ec8 Mon Sep 17 00:00:00 2001 From: Alberto Rodriguez Date: Sat, 23 Aug 2025 11:13:54 -0400 Subject: [PATCH] Add Github Mapper class with field mappings --- src/Social/Mapper/Github.php | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 src/Social/Mapper/Github.php diff --git a/src/Social/Mapper/Github.php b/src/Social/Mapper/Github.php new file mode 100644 index 0000000..4fe5f9a --- /dev/null +++ b/src/Social/Mapper/Github.php @@ -0,0 +1,35 @@ + 'login', + 'full_name' => 'name', + 'avatar' => 'avatar_url', + 'link' => 'html_url', + 'locale' => 'location', + ]; +}