neosoftware / deluge-php
Deluge php package from console
Installs: 6
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 1
Open Issues: 0
Type:lib
This package is auto-updated.
Last update: 2025-06-17 07:27:19 UTC
README
Php package from deluge console
Install
Run composer require neosoftware/deluge-php
Use
$delugeConsole = new DelugeConsole([ 'host' => 'localhost', 'user' => 'deluge', 'password' => 'deluge', ]); $torrents = (new InfoCommand($delugeConsole))->torrentList(); foreach($torrents as $torrent){ print $torrent->name . ' '. $torrent->eta . PHP_EOL; }