ferrandini / pdo-session-bundle
Symfony2 PDOSession Bundle.
Package info
github.com/aferrandini/PDOSessionBundle
Type:symfony-bundle
pkg:composer/ferrandini/pdo-session-bundle
v1.2
2014-07-08 15:29 UTC
Requires
- php: >=5.3.3
- doctrine/doctrine-bundle: ~1.2
- doctrine/orm: ~2.4
- symfony/framework-bundle: ~2.5
This package is auto-updated.
Last update: 2026-02-20 20:14:43 UTC
README
PDO Session Bundle adds PDO Session to your symfony project easy and fast.
Instal the bundle with composer
... "require": { ... "ferrandini/pdo-session-bundle": "1.*" } ...
Enable the bundle in your app/AppKernel.php
// app/AppKernel.php ... $bundles = array( ... new Ferrandini\Bundle\PDOSessionBundle\FerrandiniPDOSessionBundle(), ); ...
Configure your session hanlder in config.yml
... framework: ... session: handler_id: ferrandini.pdo.session.handler ...