2017 © Pedro Peláez
 

library oauth2-stack

A complete Oauth2 Server and Views stack

image

cloudoki/oauth2-stack

A complete Oauth2 Server and Views stack

  • Monday, March 20, 2017
  • by koenbetsens
  • Repository
  • 22 Watchers
  • 2 Stars
  • 1,432 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 1 Forks
  • 3 Open issues
  • 10 Versions
  • 10 % Grown

The README.md

Oauth2 Stack

A complete Oauth2 Server and Views stack

With the Oauth2 Stack one can integrate the complete Open Authentication 2.0 flow in a single require. The package includes DB migration files, the Oauth2 Server, Account/User models and all the required web and e-mail views., (*1)

The goal of this package is to split it up in multiple Framework Branches. Right now, however, the Oauth2-Stack package is focussed on Laravel 4.2 with Eloquent in MQ alignment (3-layer environment)., (*2)

v0.4 is the stable Laravel 4.2 compatible release, (*3)

v0.5 is the stable Laravel 5.2 compatible release, (*4)

Dependencies

Oauth2 Server - The Oauth2 Stack is based on Brent Shaffer's Oauth2 Server, tweaked for multi-layer usage., (*5)

Views - The Views are based on Bootstrap 3 for easy styling., (*6)


For this package, you should have some knowledge of Composer and Laravel. If you need your local environment set up, read this guide. If you want a simple Laravel app set up, read this guide., (*7)


Laravel 5.2 MQ Install

Add our package as requirement in your composer file., (*8)

$ nano composer.json
"require": {
    "laravel/framework": "5.2.*",
    "cloudoki/oauth2-stack": "dev-master"
    ...


You might want to run an update. If something goes wrong, change your `minimum-stability` to `dev` in the `composer.json` file, for now.
$ composer update

The package is now installed in the project `vendor` folder. You'll need to register the package provider in your app config file next. Since Laravel 5, the Illuminate\Form is no longer part of the core pack, so you should register it as well.
$ nano config/app.php
    'providers' => [
        ...
        Collective\Html\HtmlServiceProvider::class,
        Cloudoki\OaStack\OaStackServiceProvider::class,
    ],

    'aliases' => [
        ...
        'Form'      => Collective\Html\FormFacade::class,
        'HTML'      => Collective\Html\HtmlFacade::class,
    ],

Laravel 4.2 MQ Install

Add our package as requirement in your composer file., (*9)

$ nano composer.json
"require": {
    "laravel/framework": "4.2.*",
    "cloudoki/oauth2-stack": "v0.4"
    ...


You might want to run an update. If something goes wrong, change your `minimum-stability` to `dev` in the `composer.json` file, for now.
$ composer update

The package is now installed in the project `vendor` folder. You'll need to register the package provider in your app config file next. Finish it off with dump to be on the safe side.
$ nano app/config/app.php
'providers' => array(
    ...
    'Cloudoki\OaStack\OaStackServiceProvider'
),
$ php artisan dump-autoload



If you go deep into the package you'll find out that the `/oauth2` routes are defined right there. Feel free to override this by copy-pasting the routes to your project `./app/routes.php` file and disabling the include in `OaStackServiceProvider.php`. The same goes for the filters file, which identifies `auth`, a basic token check. #### Config You will need to edit the uri's to match your project. We have created a config file for this purpose. Run this command to copy it in your .app/config folder: **Laravel 4.2**
$ php artisan config:publish cloudoki/oauth2-stack
*You may also create environment specific configs by placing them like so `app/config/packages/cloudoki/oastack/environment`.*

**Laravel 5.2**
$ php artisan vendor:publish
*This will publish the package and everything in the boot method on the pacakage ServiceProvider file*

Note that your `app/config/app.php` file needs a valid timezone setting.
'timezone' => 'Europe/Brussels'

#### Models The Oauth2 related models, **Oauth2AccessToken**, **Oauth2Authorization**, **Oauth2Client** should be created into your database straight from the migration files. The User and Account models can be integrated (eg. by class extending) in your existing project, or also be built straight from the migration files. **Laravel 4.2**
$ php artisan migrate --package="cloudoki/oauth2-stack"

**Laravel 5.2**
$ php artisan vendor:publish --tag="migrations"

Make sure your project database is connected, first..., (*10)

This package is all MIT., (*11)

The Versions

20/03 2017

dev-feature/decoupling-improvements

dev-feature/decoupling-improvements http://github.com/Cloudoki/oauth2-stack

A complete Oauth2 Server and Views stack

  Sources   Download

MIT

The Requires

 

by Rui Molefas

laravel oauth2

20/03 2017

dev-master

9999999-dev http://github.com/Cloudoki/oauth2-stack

A complete Oauth2 Server and Views stack

  Sources   Download

MIT

The Requires

 

by Rui Molefas

laravel oauth2

20/03 2017

v0.6

0.6.0.0 http://github.com/Cloudoki/oauth2-stack

A complete Oauth2 Server and Views stack

  Sources   Download

MIT

The Requires

 

by Rui Molefas

laravel oauth2

30/01 2017

dev-lvl51

dev-lvl51 http://github.com/Cloudoki/oauth2-stack

A complete Oauth2 Server and Views stack

  Sources   Download

MIT

The Requires

 

by Rui Molefas

laravel oauth2

30/01 2017

v5.1.1

5.1.1.0 http://github.com/Cloudoki/oauth2-stack

A complete Oauth2 Server and Views stack

  Sources   Download

MIT

The Requires

 

by Rui Molefas

laravel oauth2

21/12 2016

v5.1.0

5.1.0.0 http://github.com/Cloudoki/oauth2-stack

A complete Oauth2 Server and Views stack

  Sources   Download

MIT

The Requires

 

by Rui Molefas

laravel oauth2

07/03 2016

v0.5

0.5.0.0 http://github.com/Cloudoki/oauth2-stack

A complete Oauth2 Server and Views stack

  Sources   Download

MIT

The Requires

 

by Rui Molefas

laravel oauth2

14/10 2015

dev-lvel5

dev-lvel5 http://github.com/Cloudoki/oauth2-stack

A complete Oauth2 Server and Views stack

  Sources   Download

MIT

The Requires

 

by Rui Molefas

laravel oauth2

29/06 2015

dev-lvel4

dev-lvel4 http://github.com/Cloudoki/oauth2-stack

A complete Oauth2 Server and Views stack

  Sources   Download

MIT

The Requires

 

by Rui Molefas

laravel oauth2

29/06 2015

v0.4

0.4.0.0 http://github.com/Cloudoki/oauth2-stack

A complete Oauth2 Server and Views stack

  Sources   Download

MIT

The Requires

 

by Rui Molefas

laravel oauth2