spomky-labs/oauth2-server-resource-owner-password-credentials-grant-type-bundle

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

Symfony2 Resource Owner Password Credentials Grant Type Bundle for OAuth2 Server Bundle


README

Scrutinizer Code Quality Build Status HHVM Status PHP 7 ready

SensioLabsInsight

Latest Stable Version Total Downloads Latest Unstable Version License

This bundle adds a new grant type on your OAuth2 Server: the resource owner password credentials grant type.

It relies on the OAuth2 Interfaces Project.

The Release Process

The release process is described here.

Prerequisites

This bundle 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-resource-owner-password-credentials-grant-type-bundle" "~5.0.0"

Enable the bundle

Enable the bundle in the kernel:

<?php
// app/AppKernel.php

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

How to use

See this page for more information.

Contributing

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

Licence

This bundle is release under MIT licence.