PHP Classes

File: vendor/symfony/symfony/src/Symfony/Bundle/SecurityBundle/Tests/DependencyInjection/Fixtures/php/remember_me_options.php

Recommend this page to a friend!
  Classes of Murat Cileli   Papernic   vendor/symfony/symfony/src/Symfony/Bundle/SecurityBundle/Tests/DependencyInjection/Fixtures/php/remember_me_options.php   Download  
File: vendor/symfony/symfony/src/Symfony/Bundle/SecurityBundle/Tests/DependencyInjection/Fixtures/php/remember_me_options.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Papernic
Manage documents colaboratively
Author: By
Last change:
Date: 7 years ago
Size: 434 bytes
 

Contents

Class file image Download
<?php

$container
->loadFromExtension('security', array(
   
'providers' => array(
       
'default' => array('id' => 'foo'),
    ),

   
'firewalls' => array(
       
'main' => array(
           
'form_login' => true,
           
'remember_me' => array(
               
'secret' => 'TheSecret',
               
'catch_exceptions' => false,
               
'token_provider' => 'token_provider_id',
            ),
        ),
    ),
));