From c93302525d98080d8f8a5f9e1948616712a84758 Mon Sep 17 00:00:00 2001 From: Hugh Lashbrooke Date: Sat, 30 Sep 2017 09:24:03 +0200 Subject: [PATCH] Adding profile for Hugh Lashbrooke (me) --- src/Profiles/HughLashbrookeProfile.php | 73 ++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 src/Profiles/HughLashbrookeProfile.php diff --git a/src/Profiles/HughLashbrookeProfile.php b/src/Profiles/HughLashbrookeProfile.php new file mode 100644 index 0000000..86d3e2a --- /dev/null +++ b/src/Profiles/HughLashbrookeProfile.php @@ -0,0 +1,73 @@ + 'https://github.com/hlashbrooke/WordPress-Plugin-Template', + ]; + } + + /** + * Optional function that should return an array of OpenSource projects to which this person has contributed (or at least + * recommends). The index should contain the name of the project and the value should be a url to the project's + * homepage (typically a GitHub page) + * + * @return array + */ + public function getInvolvedProjects() { + return [ + 'WordPress' => 'https://github.com/wordpress/wordpress', + 'Seriously Simple Podcasting' => 'https://github.com/TheCraigHewitt/Seriously-Simple-Podcasting', + 'WooCommerce' => 'https://github.com/automattic/woocommerce', + ]; + } +}