spomky-labs/oauth2-server-configuration-bundle

This package is abandoned and no longer maintained. The author suggests using the spomky-labs/oauth2-server-bundle package instead.

Symfony2 OAuth2 Server Configuration Bundle

v5.0.1 2015-06-15 20:35 UTC

This package is not auto-updated.

Last update: 2015-08-17 10:39:34 UTC


README

Scrutinizer Code Quality Build Status HHVM Status PHP 7 ready

SensioLabsInsight

Latest Stable Version Total Downloads Latest Unstable Version License

This bundle provides an easy way to set the configuration of your OAuth2 Server. It relies on the OAuth2 Interfaces Project.

The Release Process

The release process is described here .

Prerequisites

This library needs at least PHP 5.4 and Symfony v2.3.

It has been successfully tested using:

  • PHP: PHP 5.4 to PHP 5.6, PHP 7 and HHVM.
  • Symfony: v2.3.x to v2.7.x.

Installation

The preferred way to install this library is to rely on Composer:

composer require "spomky-labs/oauth2-server-configuration-bundle" "~5.0.0"

Enable the bundle

Enable the bundle in the kernel:

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        ...
        new SpomkyLabs\SOAuth2ServerConfigurationBundle\SpomkyLabsOAuth2ServerConfigurationBundle(),
    );
}

Configuration

The configuration of this bundle depends on component added to your OAuth2 Server. To know which configuration keys and values are available, look at the console command provided by this bundle

sl_oauth2_configuration:
    options:
        key1: value1
        key2: value2
        key3: value3
        key4: [value1, value2, value3, value4]
        key5: 123

How to use

Have a look at How to use to use this bundle.

Contributing

Requests for new features, bug fixed and all other ideas to make this bundle awesome are welcome. Please follow these best practices.

Licence

This library is release under MIT licence.