adt/doctrine-session-handler
最新稳定版本:v2.5
Composer 安装命令:
composer require adt/doctrine-session-handler
包简介
Doctrine session handler
README 文档
README
composer require adt/doctrine-session-handler
<?php namespace App\Entity; use ADT\DoctrineSessionHandler\SessionInterface; use ADT\DoctrineSessionHandler\SessionTrait; use Doctrine\ORM\Mapping as ORM; /** * @ORM\Entity */ #[ORM\Entity] class SessionStorage extends BaseEntity implements SessionInterface { use SessionTrait; /** * @var integer * * @ORM\Id * @ORM\Column(type="integer", nullable=false) * @ORM\GeneratedValue */ #[ORM\Id] #[ORM\Column(nullable: false)] #[ORM\GeneratedValue] public int $id; }
services: sessionHandler: ADT\DoctrineSessionHandler\Handler(\App\Entity\SessionStorage) session: autoStart: smart handler: @sessionHandler
统计信息
- 总下载量: 20.52k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-09-01