ferrandini / pdo-session-bundle

Symfony2 PDOSession Bundle.

安装: 296

依赖者: 0

建议者: 0

安全性: 0

星标: 0

关注者: 1

分支: 0

开放问题: 0

类型:symfony-bundle

v1.2 2014-07-08 15:29 UTC

This package is auto-updated.

Last update: 2024-09-20 17:08:31 UTC


README

PDOSessionBundle 为您的 symfony 项目轻松快速地添加 PDO Session。

使用 composer 安装该捆绑包

...
"require": {
    ...
    "ferrandini/pdo-session-bundle": "1.*"
}
...

在您的 app/AppKernel.php 中启用该捆绑包

// app/AppKernel.php

...
    $bundles = array(
        ...
        new Ferrandini\Bundle\PDOSessionBundle\FerrandiniPDOSessionBundle(),
    );
...

config.yml 中配置您的会话处理器

...
framework:
    ...
    session:
        handler_id: ferrandini.pdo.session.handler
...