From 7d0bad46434c2717c41aa92109a1ff8262b4ca2b Mon Sep 17 00:00:00 2001 From: anoy Date: Mon, 27 Nov 2023 09:37:26 +0100 Subject: [PATCH] update homepage url (#423) Signed-off-by: anoy. --- composer.json | 2 +- examples/feed-creation.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 8831cfed..0b4cfc3a 100644 --- a/composer.json +++ b/composer.json @@ -2,7 +2,7 @@ "name": "debril/feed-io", "description": "PHP library built to consume and serve JSONFeed / RSS / Atom feeds", "keywords": ["rss", "atom","jsonfeed", "feed", "news", "CLI", "client"], - "homepage": "https://feed-io.net", + "homepage": "https://alexdebril.github.io/feed-io/", "type": "library", "license": "MIT", "authors": [ diff --git a/examples/feed-creation.php b/examples/feed-creation.php index 317a5ca8..bbe8d65f 100644 --- a/examples/feed-creation.php +++ b/examples/feed-creation.php @@ -14,7 +14,7 @@ use \FeedIo\Feed; $feed = new Feed(); -$feed->setLink('https://feed-io.net'); +$feed->setLink('https://example.com'); $feed->setTitle('feed-io example feed'); $feed->setDescription('my greate feed'); @@ -23,7 +23,7 @@ $item->setTitle('a title'); $item->setLastModified(new \DateTime()); -$item->setLink('https://feed-io.net/item/1'); +$item->setLink('https://example.com/item/1'); $item->setContent("Hope you like the code you are reading"); $item->setSummary('my summary'); $feed->add($item);