{"id":13519542,"url":"https://github.com/simplepie/simplepie","last_synced_at":"2025-05-13T21:06:50.777Z","repository":{"id":675911,"uuid":"319491","full_name":"simplepie/simplepie","owner":"simplepie","description":"A simple Atom/RSS parsing library for PHP.","archived":false,"fork":false,"pushed_at":"2025-03-15T10:20:47.000Z","size":4942,"stargazers_count":1555,"open_issues_count":69,"forks_count":395,"subscribers_count":60,"default_branch":"master","last_synced_at":"2025-04-28T13:58:42.705Z","etag":null,"topics":["atom","library","parser","php","rss"],"latest_commit_sha":null,"homepage":"http://simplepie.org/","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/simplepie.png","metadata":{"files":{"readme":"README.markdown","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSES/BSD-3-Clause.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"patreon":"simplepie_ng","custom":["https://cash.app/$rparman","https://www.paypal.me/rparman","https://venmo.com/skyzyx"]}},"created_at":"2009-09-28T03:33:54.000Z","updated_at":"2025-04-21T09:09:08.000Z","dependencies_parsed_at":"2023-07-06T09:16:19.019Z","dependency_job_id":"92d0a6b6-3d13-43eb-8d1c-d208e3183a48","html_url":"https://github.com/simplepie/simplepie","commit_stats":{"total_commits":1488,"total_committers":94,"mean_commits":"15.829787234042554","dds":0.5524193548387097,"last_synced_commit":"adc91d455d2247ad4eb9febef0c275a780780cad"},"previous_names":[],"tags_count":49,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simplepie%2Fsimplepie","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simplepie%2Fsimplepie/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simplepie%2Fsimplepie/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simplepie%2Fsimplepie/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/simplepie","download_url":"https://codeload.github.com/simplepie/simplepie/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254028798,"owners_count":22002277,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["atom","library","parser","php","rss"],"created_at":"2024-08-01T05:02:00.349Z","updated_at":"2025-05-13T21:06:45.769Z","avatar_url":"https://github.com/simplepie.png","language":"PHP","funding_links":["https://patreon.com/simplepie_ng","https://cash.app/$rparman","https://www.paypal.me/rparman","https://venmo.com/skyzyx"],"categories":["PHP"],"sub_categories":[],"readme":"SimplePie\n=========\n\nSimplePie is a very fast and easy-to-use class, written in PHP, that puts the\n'simple' back into 'really simple syndication'.  Flexible enough to suit\nbeginners and veterans alike, SimplePie is focused on [speed, ease of use,\ncompatibility and standards compliance][what_is].\n\n[what_is]: http://simplepie.org/wiki/faq/what_is_simplepie\n\n\nRequirements\n------------\n* PHP 7.2+ (Required since SimplePie 1.8.0)\n* libxml2 (certain 2.7.x releases are too buggy for words, and will crash)\n* One of iconv, mbstring or intl extensions\n* Optionally, intl extension, [symfony/polyfill-intl-idn](https://github.com/symfony/polyfill-intl-idn) or cURL extension built with IDN support to support IDNs\n* cURL or fsockopen()\n* PCRE support\n\nPSR-18: HTTP Client support\n--------------\n\nSince SimplePie 1.9.0 you can use a [PSR-18](https://www.php-fig.org/psr/psr-18/) HTTP client like [Guzzle](https://guzzlephp.org)\nor [every other implementation](https://packagist.org/providers/psr/http-client-implementation).\nPlease note that you would also need [PSR-17](https://www.php-fig.org/psr/psr-17/) implementations of `RequestFactoryInterface` and an `UriFactoryInterface` implementation.\n\n```php\n$simplepie = new \\SimplePie\\SimplePie();\n$simplepie-\u003eset_http_client(\n    new \\GuzzleHttp\\Client(),\n    new \\GuzzleHttp\\Psr7\\HttpFactory(),\n    new \\GuzzleHttp\\Psr7\\HttpFactory(),\n);\n```\n\nPSR-16: Caching support\n--------------\n\nSince SimplePie 1.8.0 you can use the [PSR-16](https://www.php-fig.org/psr/psr-16/) cache from\n[Symfony](https://symfony.com/doc/current/components/cache.html)\nor [every other implementation](https://packagist.org/providers/psr/simple-cache-implementation).\n\n```php\n$simplepie = new \\SimplePie\\SimplePie();\n$simplepie-\u003eset_cache(\n    new \\Symfony\\Component\\Cache\\Psr16Cache(\n        new \\Symfony\\Component\\Cache\\Adapter\\FilesystemAdapter()\n    ),\n);\n```\n\nWhat comes in the package?\n--------------------------\n1. `src/` - SimplePie classes for use with the autoloader\n2. `autoloader.php` - The SimplePie Autoloader if you want to use the separate\n   file version.\n3. `README.markdown` - This document.\n4. `LICENSES/BSD-3-Clause.txt` - A copy of the BSD license.\n5. `compatibility_test/` - The SimplePie compatibility test that checks your\n   server for required settings.\n6. `demo/` - A basic feed reader demo that shows off some of SimplePie's more\n   noticeable features.\n7. `build/` - Scripts related to generating pieces of SimplePie\n8. `test/` - SimplePie's unit test suite.\n\n### Where's `simplepie.inc`?\nSince SimplePie 1.3, we've split the classes into separate files to make it easier\nto maintain and use.\n\nIf you'd like a single monolithic file, see the assets in the\n[releases](https://github.com/simplepie/simplepie/releases), or you can\nrun `php build/compile.php` to generate `SimplePie.compiled.php` yourself.\n\nTo start the demo\n-----------------\n1. Upload this package to your webserver.\n2. Make sure that the cache folder inside of the demo folder is server-writable.\n3. Navigate your browser to the demo folder.\n\n\nNeed support?\n-------------\nFor further setup and install documentation, function references, etc., visit\n[the wiki][wiki]. If you're using the latest version off GitHub, you can also\ncheck out the [API documentation][].\n\nIf you can't find an answer to your question in the documentation, head on over\nto one of our [support channels][]. For bug reports and feature requests, visit\nthe [issue tracker][].\n\n[API documentation]: http://dev.simplepie.org/api/\n[wiki]: http://simplepie.org/wiki/\n[support channels]: http://simplepie.org/support/\n[issue tracker]: http://github.com/simplepie/simplepie/issues\n\n\nProject status\n--------------\nSimplePie is currently maintained by Malcolm Blaney.\n\nAs an open source project, SimplePie is maintained on a somewhat sporadic basis.\nThis means that feature requests may not be fulfilled straight away, as time has\nto be prioritized.\n\nIf you'd like to contribute to SimplePie, the best way to get started is to fork\nthe project on GitHub and send pull requests for patches. When doing so, please\nbe aware of our [coding standards](http://simplepie.org/wiki/misc/coding_standards).\n\nThe main development for the next minor release happens in `master` branch.\nPlease create your pull requests primarily against this branch.\n\nWe do not actively provide bug fixes or security fixes for older versions. Nevertheless,\nyou are welcome to create backport PRs if you still need support for older PHP versions.\nPlease open your PR against the appropriate branch.\n\n| branch                                                                     | requires    |\n|----------------------------------------------------------------------------|-------------|\n| [master](https://github.com/simplepie/simplepie/tree/master)               | PHP 7.2.0+  |\n| [one-dot-seven](https://github.com/simplepie/simplepie/tree/one-dot-seven) | PHP 5.6.0+  |\n| [one-dot-three](https://github.com/simplepie/simplepie/tree/one-dot-three) | PHP 5.2.0+  |\n\n\nAuthors and contributors\n------------------------\n### Current\n* [Malcolm Blaney][] (Maintainer, support)\n\n### Alumni\n* [Ryan McCue][] (developer, support)\n* [Ryan Parman][] (Creator, developer, evangelism, support)\n* [Sam Sneddon][] (Lead developer)\n* [Michael Shipley][] (Submitter of patches, support)\n* [Steve Minutillo][] (Submitter of patches)\n\n[Malcolm Blaney]: https://mblaney.xyz\n[Ryan McCue]: http://ryanmccue.info\n[Ryan Parman]: http://ryanparman.com\n[Sam Sneddon]: https://gsnedders.com\n[Michael Shipley]: http://michaelpshipley.com\n[Steve Minutillo]: http://minutillo.com/steve/\n\n\n### Contributors\nFor a complete list of contributors:\n\n1. Pull down the latest SimplePie code\n2. In the `simplepie` directory, run `git shortlog -ns`\n\n\nLicense\n-------\n[New BSD license](http://www.opensource.org/licenses/BSD-3-Clause)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsimplepie%2Fsimplepie","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsimplepie%2Fsimplepie","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsimplepie%2Fsimplepie/lists"}