smart-core / session-bundle
Doctrine ORM Session Storage Handler
Installs: 633
Dependents: 2
Suggesters: 0
Security: 0
Stars: 2
Watchers: 3
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.3.3
- symfony/framework-bundle: >=2.1
This package is auto-updated.
Last update: 2024-10-29 02:07:26 UTC
README
Doctrine ORM Session Storage Handler
Из особенностей, бандл хранит поле user_id, что позволяет получать список пользователей online.
Installation
Enable the bundle in the kernel:
<?php // app/AppKernel.php public function registerBundles() { $bundles = array( // ... new SmartCore\Bundle\SessionBundle\SmartCoreSessionBundle(), ); }
Enable handler_id:
# app/config/config.yml framework: session: handler_id: smart_core_session.handler
@todo
-
Конфигурирование автоподключения, например:
# app/config/config.yml smart_core_session: autoconfigure: true
В этом случае, будет автоматически применяется handler_id в конфигурации framework бандла.