lzsen / hyperf-memory-table
v1.0.0
2023-03-08 08:04 UTC
Requires
- php: >=8.0
- hyperf/di: 3.0.*
- hyperf/framework: 3.0.*
- hyperf/memory: ^3.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.0
- mockery/mockery: ^1.0
- phpunit/phpunit: >=7.0
- swoole/ide-helper: ^4.5
Suggests
- swow/swow: Required to create swow components.
This package is auto-updated.
Last update: 2025-03-08 12:29:13 UTC
README
composer require lzsen/hyperf-memory-table
<?php namespace App\MemoryTable; use Lzsen\MemoryTable\AbstractMemoryTable; use Lzsen\MemoryTable\Annotation\MemoryTable; #[MemoryTable] class TestTable extends AbstractMemoryTable { protected string $table = 'fd'; protected int $size = 100; // 字段 protected array $fields = [ [ 'name' => 'f1', 'type' => AbstractMemoryTable::TYPE_STRING, 'size' => 10, ], ]; }