arokettu / torrent-file
处理种子文件的类
5.3.1
2024-07-28 21:43 UTC
Requires
- php: ^8.1
- ext-hash: *
- arokettu/bencode: ^2.8 | ^3.1 | ^4.0
- nikic/iter: ^2.2
- psr/event-dispatcher: ^1.0
- symfony/filesystem: ^5.4 | ^6.0 | ^7.0
- symfony/finder: ^5.4 | ^6.0 | ^7.0
Requires (Dev)
- ext-openssl: *
- jetbrains/phpstorm-attributes: ^1.0
- league/event: ^3.0
- phpunit/phpunit: ^10.5.3
- psy/psysh: *
- sandfox.dev/code-standard: ^1.2024.07.05
- squizlabs/php_codesniffer: *
- vimeo/psalm: ^5.2
Suggests
- ext-openssl: for signature logic
- dev-master
- 5.3.1
- 5.3.0
- 5.2.2
- 5.2.1
- 5.2.0
- 5.1.0
- 5.0.3
- 5.0.2
- 5.0.1
- 5.0.0
- 4.x-dev
- 4.1.1
- 4.1.0
- 4.0.1
- 4.0.0
- 3.x-dev
- 3.3.1
- 3.3.0
- 3.2.0
- 3.1.1
- 3.1.0
- 3.0.1
- 3.0.0
- 2.x-dev
- 2.5.2
- 2.5.1
- 2.5.0
- 2.4.0
- 2.3.1
- 2.3.0
- 2.2.0
- 2.1.2
- 2.1.1
- 2.1.0
- 2.0.0
- 1.x-dev
- 1.4.2
- 1.4.1
- 1.4.0
- 1.3.2
- 1.3.1
- 1.3.0
- 1.2.0
- 1.1.1
- 1.1.0
- 1.0.2
- 1.0.1
- 1.0.0
- 0.1.1
- 0.1.0
This package is auto-updated.
Last update: 2024-08-28 21:46:34 UTC
README
用于处理种子文件的PHP类
安装
composer require arokettu/torrent-file
使用
<?php use Arokettu\Torrent\TorrentFile; // open file $torrent = TorrentFile::load('debian.torrent'); // create for path (file or directory) $torrent = TorrentFile::fromPath('/home/user/dists/debian'); // manipulate fields $torrent->setAnnounce('http://tracker.example:1234'); // list files foreach ($torrent->v1()->getFiles() as $file) { echo implode('/', $file->path()) , ': ' , $file->length, PHP_EOL; }
特性
- 种子文件数据处理
- 创建种子文件
- 列出种子文件
- 支持版本1、版本2、混合v1+v2,以及许多BEPs,如节点、URL列表等
- 种子文件签名
CLI工具
基于库的CLI工具: https://sandfox.dev/php/torrent-file-cli.html
文档
在此处阅读完整文档: https://sandfox.dev/php/torrent-file.html
也在Read the Docs上: https://torrent-file.readthedocs.io/
支持
请在GitLab的我们的主仓库中提交问题: https://gitlab.com/sandfox/torrent-file/-/issues
在Gitter的我们的房间中随时提问: https://gitter.im/arokettu/community
支持版本
- 5.x (当前,PHP 8.1+)
许可证
该库根据MIT许可证条款提供开源。