https://github.com/phildier/php-rtorrent-client
PHP XMLRPC client for rtorrent
https://github.com/phildier/php-rtorrent-client
php rtorrent
Last synced: 3 months ago
JSON representation
PHP XMLRPC client for rtorrent
- Host: GitHub
- URL: https://github.com/phildier/php-rtorrent-client
- Owner: phildier
- License: bsd-4-clause
- Created: 2015-06-16T02:02:55.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2018-02-20T14:40:10.000Z (over 8 years ago)
- Last Synced: 2025-08-03T14:13:10.943Z (10 months ago)
- Topics: php, rtorrent
- Language: PHP
- Size: 19.5 KB
- Stars: 10
- Watchers: 1
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
#### PHP XMLRPC client for rtorrent
Provides a simple, composer-installable XMLRPC client for communicating with the rTorrent bittorrent client
#### Requirements
- PHP 5.5.0
- PHP curl extension
- PHP xmlrpc extension
#### Installation
Installation through composer is recommended:
`composer require phildier/php-rtorrent-client`
#### Example usage
```
"http://localhost:8981/RPC2"));
$request = new PHPRtorrentClient\Request("system.listMethods");
$methods = $client->exec($request);
print_r($methods->getAll());
```
#### Resources
rTorrent XMLRPC references:
- https://code.google.com/p/pyroscope/wiki/RtXmlRpcReference
- https://code.google.com/p/gi-torrent/wiki/rTorrent_XMLRPC_reference
- http://scratchpad.wikia.com/wiki/RTorrentCommands