Derive feed from HTML (#10)

- Prevent duplicate feed subscriptions
- Move FeedItem to its own file
This commit is contained in:
2024-04-27 22:05:39 -04:00
parent 27f7a4c7d9
commit 1826ecd588
3 changed files with 177 additions and 108 deletions

View File

@@ -1,7 +1,7 @@
<?php
/** The current Feed Reader Central version */
const FRC_VERSION = '1.0.0-alpha4';
const FRC_VERSION = '1.0.0-alpha5';
spl_autoload_register(function ($class) {
$file = implode(DIRECTORY_SEPARATOR, [__DIR__, 'lib', "$class.php"]);