2017 © Pedro Peláez
 

symfony-bundle sso-client-bundle

Genj Single Sign-On Client bundle

image

genj/sso-client-bundle

Genj Single Sign-On Client bundle

  • Monday, June 8, 2015
  • by genj
  • Repository
  • 6 Watchers
  • 0 Stars
  • 10 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

genjSsoClientBundle

The client side bundle to add Single Sign-On login functionality to your site, (*1)

Requirements

  • Curl

Installation

Add the bundle to your composer.json, (*2)

"require": {
    ...
    "genj/sso-client-bundle": "dev-master"
}

Add the bundle to your AppKernel.php, (*3)

public function registerBundles() {
        $bundles = array(
            ...
            new Genj\SsoClientBundle\GenjSsoClientBundle(),
        );

Make sure you have set the following parameters in your parameters.yml. During the composer install it will prompt you for these settings. the server url should be the full domain, including the base path of your SSO Server routings, (*4)

    genj_sso_client_server_url: http://webservice.dev/sso/command
    genj_sso_client_broker_secret: 6I3xRWQ4MAMppTvO3nm5

Add the following pararmeters to your config.yml, (*5)

genj_sso_client:
    broker_identifier: ABrokerIdentifierKnownOnTheServer
    broker_secret: SomeVerySecretKey
    server_url: %genj_sso_client_server_url% # Replace 

Add the following routes to your routing.yml, (*6)

genj_sso_client_login:
    pattern:  /login
    defaults: { _controller: GenjSsoClientBundle:Login:index }

genj_sso_client_logout:
    pattern:  /logout
    defaults: { _controller: GenjSsoClientBundle:Login:logout }

The Versions

08/06 2015

dev-master

9999999-dev

Genj Single Sign-On Client bundle

  Sources   Download

The Requires

 

by Choong Wei Tjeng
by Nico Kaag
by Susan Lau

bundle symfony client sso single sign-on genj