neosoftware/deluge-php

从控制台安装Deluge php包

0.1 2020-01-16 19:23 UTC

This package is auto-updated.

Last update: 2024-09-17 05:57:47 UTC


README

deluge控制台 的php包

安装

运行 composer require neosoftware/deluge-php

使用

$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;
}