reen/symfony-stack-security 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

reen/symfony-stack-security

最新稳定版本:0.1.0

Composer 安装命令:

composer require reen/symfony-stack-security

包简介

A Symfony security provider for STACK compatibility.

README 文档

README

This project contains a simple bundle that enables you to use STACK authentication middlewares.

Example

In order to secure the default Acme bundle with stack you have to change the secured_area within security.yml.

It should look like this:

secured_area:
    pattern:    ^/demo/secured/
    stack_token: ~
    logout:
        path:   _demo_logout
        target: _demo
    stack_challenge: ~

Note that there are 2 stack authenticators given. stack_token searches the request for a token, when it is found it will ask the security provider (default in_memory) to find the user and store it in the security context.

The other authenticator is stack_challenge it delegates authentication to the STACK middlewares.

If you like to do a quick test you can alter app_dev.php and make it look like this to authenticate as user.

<?php
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\Debug\Debug;

$loader = require_once __DIR__.'/../app/bootstrap.php.cache';
Debug::enable();

require_once __DIR__.'/../app/AppKernel.php';

$kernel = new AppKernel('dev', true);
$kernel->loadClassCache();
$request = Request::createFromGlobals();
$request->attributes->set('stack.authn.token', 'user'); // This authenticates you as "user"
$response = $kernel->handle($request);
$response->send();
$kernel->terminate($request, $response);

Questions?

统计信息

  • 总下载量: 13
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-06-17