neosoftware/deluge-php

Deluge php package from console

Installs: 7

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 1

Open Issues: 0

Type:lib

pkg:composer/neosoftware/deluge-php

0.1 2020-01-16 19:23 UTC

This package is auto-updated.

Last update: 2025-12-17 08:27:36 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;
}