arnapou/stream
最新稳定版本:v1.5.0
Composer 安装命令:
composer require arnapou/stream
包简介
Library - Simple input and output interfaces.
README 文档
README
This library allow you to wrap streams with Input or Output basic interfaces.
Installation
composer require arnapou/stream
packagist 👉️ arnapou/stream
Input
The stream you "read".
namespace Arnapou\Stream\Input;
interface Input
{
public function open(): void;
public function read(): string;
public function close(): void;
}
Output
The stream you "write".
namespace Arnapou\Stream\Output;
interface Output
{
public function write(string $data): void;
}
Php versions
| Date | Ref | 8.5 | 8.4 | 8.3 |
|---|---|---|---|---|
| 25/10/2025 | 1.5.x, main | × | × | × |
| 25/11/2024 | 1.4.x | × | × | |
| 23/01/2024 | 1.0 - 1.3 | × |
统计信息
- 总下载量: 345
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 0
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-01-23