Skip to content

Latest commit

 

History

History
60 lines (43 loc) · 1.92 KB

File metadata and controls

60 lines (43 loc) · 1.92 KB

Auth0 module for Zend Framework

Module to integrate Auth0 with Zend Framework projects.

Build Status Latest Stable Version Build Status Total Downloads

Requirements

Installation

Auth0 module only officially supports installation through Composer. For Composer documentation, please refer to getcomposer.org.

You can install the module from command line:

$ composer require riskio/auth0-module

Enable the module by adding Auth0Module key to your application.config.php file.

Default configuration

<?php
return [
    'auth0' => [
        'account' => null,
        'token' => null,
        'client_id' => null,
        'client_secret' => null,
        'redirect_uri' => null,
    ],
];

Testing

$ vendor/bin/phpunit

Credits

License

The MIT License (MIT). Please see License File for more information.