As a follow up to issue #699 update SimplePie from 1.2.1-dev (around 6years old) to current git master (1.4.4-dev). We use the master branch until the next release because it contains our patch for enclosure titles already. The other patches in the library from us can be done by configuring the SimplePie object in our code instead. Used composer to manage this library and use class autoloading. Add some unit tests for include/feedutils.php, but the interesting parts are unfortunately not testable with the current code.
41 lines
847 B
JSON
41 lines
847 B
JSON
{
|
|
"name": "simplepie/simplepie",
|
|
"description": "A simple Atom/RSS parsing library for PHP",
|
|
"type": "library",
|
|
"keywords": ["rss", "atom", "feeds"],
|
|
"homepage": "http://simplepie.org/",
|
|
"license": "BSD-3-Clause",
|
|
"authors": [
|
|
{
|
|
"name": "Ryan Parman",
|
|
"homepage": "http://ryanparman.com/",
|
|
"role": "Creator, alumnus developer"
|
|
},
|
|
{
|
|
"name": "Geoffrey Sneddon",
|
|
"homepage": "http://gsnedders.com/",
|
|
"role": "Alumnus developer"
|
|
},
|
|
{
|
|
"name": "Ryan McCue",
|
|
"email": "me@ryanmccue.info",
|
|
"homepage": "http://ryanmccue.info/",
|
|
"role": "Developer"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=5.3.0"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "~4 || ~5"
|
|
},
|
|
"suggest": {
|
|
"mf2/mf2": "Microformat module that allows for parsing HTML for microformats"
|
|
},
|
|
"autoload": {
|
|
"psr-0": {
|
|
"SimplePie": "library"
|
|
}
|
|
}
|
|
}
|