Skip to content

Commit

Permalink
update homepage url (#423)
Browse files Browse the repository at this point in the history
Signed-off-by: anoy. <[email protected]>
  • Loading branch information
anoymouserver committed Nov 27, 2023
1 parent 0bde9ae commit 7d0bad4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": [
Expand Down
4 changes: 2 additions & 2 deletions examples/feed-creation.php
Original file line number Diff line number Diff line change
Expand Up @@ -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');

Expand All @@ -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);
Expand Down

0 comments on commit 7d0bad4

Please sign in to comment.