Download the PHP package the-real-start/yii2-oauth2-server-tools without Composer

On this page you can find all versions of the php package the-real-start/yii2-oauth2-server-tools. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package yii2-oauth2-server-tools

yii2-oauth2-server-tools

Set of simple tools that helps to build API based on alegz/yii2-oauth2-server package.

Installation

Via command line:

composer require the-real-start/yii2-oauth2-server-tools

Or add lime to composer.json requirement section:

Usage

Package namepsace: TRS\yii2\oauth2server\tools

Package provides 5 classes for setting up oauth2-server:

AppIdentity

Abstract class for client credentials grant_type (see https://tools.ietf.org/html/rfc6749 for details).

You should declare getIsPublic method for you version of AppIdentity class. See example below:

Example with setting up module of yii2-oauth2-server:

User

This abstract class extends yii\web\User adds getIsPublic method and changes logic around logging user out.

This class requires to declare method getIsPublic for User

Example of class:

Setting up example:

ErrorHandler

Simple error handler that were designed to be used with API.

Setup example in yii2 main.php config file in components section:

AccessRules

Extended version of yii2 AccessRule. Adds support of user scope filtering.

Example of rule

Setup example:

In this and previous examples accessRules were declared as abstract method in base controller.

JsonHttpException

It's simple wrapper over HTTPException that can accept array as message.

Array is converted to json.

Designed to use with ErrorHandler but you are free to adopt it to your tools.

Small example

Participation and development

Hope you will find this set of tools helpful.

If you have suggestions welcome to issues on github.

If you wish to improve thia package feel free to submit pull requests.


All versions of yii2-oauth2-server-tools with dependencies

PHP Build Version
Package Version
Requires yiisoft/yii2 Version >=2.0.6
alegz/yii2-oauth2-server Version ~2.2
the-real-start/yii2-jsend-response Version ^0.1.4
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package the-real-start/yii2-oauth2-server-tools contains the following files

Loading the files please wait ....