Code Monkey home page Code Monkey logo

auth0-bundle's Introduction

Auth0 integration with Symfony

Latest Version Software License Build Status Code Coverage Quality Score Total Downloads

Warning

This bundle is in very early development. However, it is being used in production for at least 3 applications.

Installation

Install with Composer:

composer require happyr/auth0-bundle auth0/auth0-php:@alpha php-http/message

Enable the bundle in AppKernel.php

public function registerBundles()
{
    $bundles = [
        // ...
        new \Happyr\Auth0Bundle\HappyrAuth0Bundle(),
    ];

    return $bundles;
}

Add your credentials:

// app/config/config.yml
happyr_auth0:
  domain: example.eu.auth0.com
  client_id: my_client_id
  client_secret: my_secret
  cache: 'cache.provider.apc'

Configure your application for Singe Sign On (SSO).

// app/config/security.yml
security:
  firewalls:
    default:
      pattern:  ^/.*
      entry_point: 'happyr.auth0.security.authentication.entry_point.sso.default'
      auth0_sso:
        check_path: default_login_check
        login_path: user_login
        failure_path: startpage
      provider: default
      anonymous: ~
      logout:
        path:   default_logout
        target: _user_logout
        invalidate_session: true

auth0-bundle's People

Contributors

nyholm avatar magnusnordlander avatar morticue avatar nicholasruunu avatar pgrimaud avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.