ferrandini / pdo-session-bundle
Symfony2 PDOSession Bundle.
Installs: 296
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:symfony-bundle
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: 2024-10-20 17:22:50 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 ...