This repository has been archived by the owner on Mar 26, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed parser problem with some websites. Changed project name.
- Loading branch information
Tesura
authored and
Tesura
committed
Sep 9, 2022
1 parent
2681c29
commit a367ef1
Showing
2 changed files
with
157 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,34 @@ | ||
{ | ||
"name": "anzenkodo/small-rss-php", | ||
"description": "RSS & Atom feed parser for PHP. Very small and easy-to-use library for parsing your feeds.", | ||
"keywords": ["rss", "atom", "feed"], | ||
"homepage": "https://github.com/AnzenKodo/small-rss-php", | ||
"license": ["unlicense"], | ||
"authors": [ | ||
{ | ||
"name": "AnzenKodo", | ||
"email": "AnzenKodo@altmails.com", | ||
"homepage": "https://AnzenKodo.github.io/AnzenKodo", | ||
"role": "Developer" | ||
} | ||
], | ||
"support": { | ||
"issues": "https://github.com/AnzenKodo/small-rss-php/issues", | ||
"source": "https://github.com/AnzenKodo/small-rss-php" | ||
}, | ||
"require": { | ||
"php": ">=8.0" | ||
}, | ||
"autoload": { | ||
"classmap": ["src/"] | ||
} | ||
"name": "anzenkodo/rss-atom-parser", | ||
"description": "RSS & Atom feed parser for PHP. Very small and easy-to-use library for parsing your feeds.", | ||
"type": "library", | ||
"keywords": [ "rss", "atom", "feed" ], | ||
"homepage": "https://github.com/AnzenKodo/rss-atom-parser", | ||
"readme": "https://github.com/AnzenKodo/rss-atom-parser/blob/main/README.md", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "AnzenKodo", | ||
"email": "AnzenKodo@altmails.com", | ||
"homepage": "https://AnzenKodo.github.io/AnzenKodo", | ||
"role": "Developer" | ||
} | ||
], | ||
"support": { | ||
"issues": "https://github.com/AnzenKodo/rss-atom-parser/issues", | ||
"source": "https://github.com/AnzenKodo/rss-atom-parser", | ||
"docs": "https://github.com/AnzenKodo/rss-atom-parser/blob/main/README.md", | ||
}, | ||
"funding": [ | ||
{ | ||
"type": "website", | ||
"url": "https://AnzenKodo.github.io/AnzenKodo#support" | ||
} | ||
], | ||
"require": { | ||
"php": ">=8.0" | ||
}, | ||
"autoload": { | ||
"classmap": [ "src/" ] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters