Bolt\Provider\SessionServiceProvider::configure PHP Method

configure() public method

This should be the only place in this class that is specific to bolt.
public configure ( Silex\Application $app )
$app Silex\Application
    public function configure(Application $app)
    {
        $app['session.options'] = $app['config']->get('general/session', []) + ['name' => 'bolt_session', 'restrict_realm' => true, 'cookie_lifetime' => $app['config']->get('general/cookies_lifetime'), 'cookie_domain' => $app['config']->get('general/cookies_domain'), 'cookie_secure' => $app['config']->get('general/enforce_ssl'), 'cookie_httponly' => true];
    }