├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── examples ├── find_by_file.php ├── find_by_tracker.php ├── get_torrents.php ├── list_methods.php ├── method_help.php └── start_torrent.php └── src └── PHPRtorrentClient ├── Base.php ├── Client.php ├── File.php ├── Method.php ├── Peer.php ├── Request.php ├── Response.php ├── Torrent.php └── Tracker.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phildier/php-rtorrent-client/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phildier/php-rtorrent-client/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phildier/php-rtorrent-client/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phildier/php-rtorrent-client/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phildier/php-rtorrent-client/HEAD/composer.lock -------------------------------------------------------------------------------- /examples/find_by_file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phildier/php-rtorrent-client/HEAD/examples/find_by_file.php -------------------------------------------------------------------------------- /examples/find_by_tracker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phildier/php-rtorrent-client/HEAD/examples/find_by_tracker.php -------------------------------------------------------------------------------- /examples/get_torrents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phildier/php-rtorrent-client/HEAD/examples/get_torrents.php -------------------------------------------------------------------------------- /examples/list_methods.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phildier/php-rtorrent-client/HEAD/examples/list_methods.php -------------------------------------------------------------------------------- /examples/method_help.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phildier/php-rtorrent-client/HEAD/examples/method_help.php -------------------------------------------------------------------------------- /examples/start_torrent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phildier/php-rtorrent-client/HEAD/examples/start_torrent.php -------------------------------------------------------------------------------- /src/PHPRtorrentClient/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phildier/php-rtorrent-client/HEAD/src/PHPRtorrentClient/Base.php -------------------------------------------------------------------------------- /src/PHPRtorrentClient/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phildier/php-rtorrent-client/HEAD/src/PHPRtorrentClient/Client.php -------------------------------------------------------------------------------- /src/PHPRtorrentClient/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phildier/php-rtorrent-client/HEAD/src/PHPRtorrentClient/File.php -------------------------------------------------------------------------------- /src/PHPRtorrentClient/Method.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phildier/php-rtorrent-client/HEAD/src/PHPRtorrentClient/Method.php -------------------------------------------------------------------------------- /src/PHPRtorrentClient/Peer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phildier/php-rtorrent-client/HEAD/src/PHPRtorrentClient/Peer.php -------------------------------------------------------------------------------- /src/PHPRtorrentClient/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phildier/php-rtorrent-client/HEAD/src/PHPRtorrentClient/Request.php -------------------------------------------------------------------------------- /src/PHPRtorrentClient/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phildier/php-rtorrent-client/HEAD/src/PHPRtorrentClient/Response.php -------------------------------------------------------------------------------- /src/PHPRtorrentClient/Torrent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phildier/php-rtorrent-client/HEAD/src/PHPRtorrentClient/Torrent.php -------------------------------------------------------------------------------- /src/PHPRtorrentClient/Tracker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phildier/php-rtorrent-client/HEAD/src/PHPRtorrentClient/Tracker.php --------------------------------------------------------------------------------