The clean & modern RSS server that doesn't give you any crap. https://thearsse.com/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
549 B

<?php return [
'code' => 200,
'cache' => false,
'mime' => "application/rss+xml",
'content' => <<<MESSAGE_BODY
<rss version="2.0">
<channel>
<title>Test feed</title>
<link>http://localhost:8000/</link>
<description>A basic feed for testing</description>
<item>
<description>Sample article 1</description>
</item>
<item>
<description>Sample article 2</description>
</item>
<item>
<description>Sample article 3</description>
</item>
</channel>
</rss>
MESSAGE_BODY
];