{"id":21846098,"url":"https://github.com/owenvoke/torrent-parser-php","last_synced_at":"2025-04-14T13:22:54.176Z","repository":{"id":57046115,"uuid":"80509300","full_name":"owenvoke/torrent-parser-php","owner":"owenvoke","description":"A collection of parsers for various torrent RSS/JSON feeds.","archived":false,"fork":false,"pushed_at":"2018-12-20T10:47:35.000Z","size":125,"stargazers_count":6,"open_issues_count":2,"forks_count":5,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-28T02:38:25.857Z","etag":null,"topics":["extratorrent","mininova","parser","rarbg","torrents","worldwidetorrents"],"latest_commit_sha":null,"homepage":"https://packagist.org/packages/pxgamer/torrent-parser-php","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/owenvoke.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-01-31T10:06:17.000Z","updated_at":"2024-12-17T13:07:54.000Z","dependencies_parsed_at":"2022-08-24T03:40:29.745Z","dependency_job_id":null,"html_url":"https://github.com/owenvoke/torrent-parser-php","commit_stats":null,"previous_names":["pxgamer/torrent-parser-php"],"tags_count":21,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/owenvoke%2Ftorrent-parser-php","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/owenvoke%2Ftorrent-parser-php/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/owenvoke%2Ftorrent-parser-php/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/owenvoke%2Ftorrent-parser-php/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/owenvoke","download_url":"https://codeload.github.com/owenvoke/torrent-parser-php/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248886717,"owners_count":21177731,"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":["extratorrent","mininova","parser","rarbg","torrents","worldwidetorrents"],"created_at":"2024-11-27T23:12:46.281Z","updated_at":"2025-04-14T13:22:54.146Z","avatar_url":"https://github.com/owenvoke.png","language":"PHP","readme":"# torrent-parser-php\n\n[![Latest Version on Packagist][ico-version]][link-packagist]\n[![Software License][ico-license]](LICENSE.md)\n[![Build Status][ico-travis]][link-travis]\n[![Style CI][ico-styleci]][link-styleci]\n[![Code Coverage][ico-code-quality]][link-code-quality]\n[![Total Downloads][ico-downloads]][link-downloads]\n\nA collection of parsers for various torrent RSS/JSON feeds.\n\n## Install\n\nVia Composer\n\n```bash\n$ composer require pxgamer/torrent-parser-php\n```\n\n## Usage\n\nAll parameters are returned as a [Collection](https://github.com/tightenco/collect) of [`Torrent`](src/Torrent.php) instances.\n\n### Currently Supported Feeds\n\n- [WorldWide Torrents](src/WorldWideTorrents.php)\n- [RARBG](src/RARBG.php)\n- [EZTV](src/EZTV.php)\n- [LimeTorrents](src/LimeTorrents.php)\n\n### Examples\n\n#### WorldWide Torrents\n\n_Search_\n```php\nuse \\pxgamer\\TorrentParser;\nTorrentParser\\WorldWideTorrents::search('Search Query');\n```\n\n_Latest_\n```php\nuse \\pxgamer\\TorrentParser;\nTorrentParser\\WorldWideTorrents::latest();\n```\n\n_User_\n```php\nuse \\pxgamer\\TorrentParser;\nTorrentParser\\WorldWideTorrents::user('username');\n```\n\n#### RARBG\n\n*__NOTE:__ RARBG only supports the `::latest()` function.*\n\n_Latest_\n```php\nuse \\pxgamer\\TorrentParser;\nTorrentParser\\RARBG::latest();\n```\n\n#### EZTV\n\n*__NOTE:__ EZTV only supports the `::latest()` function.*\n\n_Latest_\n```php\nuse \\pxgamer\\TorrentParser;\nTorrentParser\\EZTV::latest();\n```\n\n#### LimeTorrents\n\n*__NOTE:__ LimeTorrents only supports the `::latest()` function.*\n\n_Latest_\n```php\nuse \\pxgamer\\TorrentParser;\nTorrentParser\\LimeTorrents::latest();\n```\n\n## Change log\n\nPlease see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.\n\n## Testing\n\n``` bash\n$ composer test\n```\n\n## Contributing\n\nPlease see [CONTRIBUTING](.github/CONTRIBUTING.md) and [CODE_OF_CONDUCT](.github/CODE_OF_CONDUCT.md) for details.\n\n## Security\n\nIf you discover any security related issues, please email security@pxgamer.xyz instead of using the issue tracker.\n\n## Credits\n\n- [pxgamer][link-author]\n- [All Contributors][link-contributors]\n\n## License\n\nThe MIT License (MIT). Please see [License File](LICENSE.md) for more information.\n\n[ico-version]: https://img.shields.io/packagist/v/pxgamer/torrent-parser-php.svg?style=flat-square\n[ico-license]: https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square\n[ico-travis]: https://img.shields.io/travis/pxgamer/torrent-parser-php/master.svg?style=flat-square\n[ico-styleci]: https://styleci.io/repos/80509300/shield\n[ico-code-quality]: https://img.shields.io/codecov/c/github/pxgamer/torrent-parser-php.svg?style=flat-square\n[ico-downloads]: https://img.shields.io/packagist/dt/pxgamer/torrent-parser-php.svg?style=flat-square\n\n[link-packagist]: https://packagist.org/packages/pxgamer/torrent-parser-php\n[link-travis]: https://travis-ci.org/pxgamer/torrent-parser-php\n[link-styleci]: https://styleci.io/repos/80509300\n[link-code-quality]: https://codecov.io/gh/pxgamer/torrent-parser-php\n[link-downloads]: https://packagist.org/packages/pxgamer/torrent-parser-php\n[link-author]: https://github.com/pxgamer\n[link-contributors]: ../../contributors\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fowenvoke%2Ftorrent-parser-php","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fowenvoke%2Ftorrent-parser-php","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fowenvoke%2Ftorrent-parser-php/lists"}