From 10dc3b43c364eb74f497c7ea621f55bda5b71ac7 Mon Sep 17 00:00:00 2001 From: Ryan Weaver Date: Tue, 10 Jan 2017 17:20:54 -0500 Subject: [PATCH] Running README script --- README.md | 74 +++++++++++++++++++++++++++---------------------------- 1 file changed, 37 insertions(+), 37 deletions(-) diff --git a/README.md b/README.md index cd85dda9..606f8246 100644 --- a/README.md +++ b/README.md @@ -54,23 +54,23 @@ via Composer: -| OAuth2 Provider | Install | -| --------------------------------------------------------------- | ------------------------------------------------ | -| [Facebook](https://github.com/thephpleague/oauth2-facebook) | composer require league/oauth2-facebook | -| [GitHub](https://github.com/thephpleague/oauth2-github) | composer require league/oauth2-github | -| [GitLab](https://github.com/omines/oauth2-gitlab) | composer require omines/oauth2-gitlab | -| [LinkedIn](https://github.com/thephpleague/oauth2-linkedin) | composer require league/oauth2-linkedin | -| [Google](https://github.com/thephpleague/oauth2-google) | composer require league/oauth2-google | -| [Eve Online](https://github.com/evelabs/oauth2-eveonline) | composer require evelabs/oauth2-eveonline | -| [Instagram](https://github.com/thephpleague/oauth2-instagram) | composer require league/oauth2-instagram | -| [VKontakte](https://github.com/j4k/oauth2-vkontakte) | composer require j4k/oauth2-vkontakte | -| [Bitbucket](https://github.com/stevenmaguire/oauth2-bitbucket) | composer require stevenmaguire/oauth2-bitbucket | -| [Odnoklassniki](https://github.com/rakeev/oauth2-odnoklassniki) | composer require aego/oauth2-odnoklassniki | -| [Slack](https://github.com/adam-paterson/oauth2-slack) | composer require adam-paterson/oauth2-slack | -| [Vimeo](https://github.com/saf33r/oauth2-vimeo) | composer require saf33r/oauth2-vimeo | -| [Yahoo](https://github.com/hayageek/oauth2-yahoo) | composer require hayageek/oauth2-yahoo | -| [Yandex](https://github.com/rakeev/oauth2-yandex) | composer require aego/oauth2-yandex | -| generic | configure any unsupported provider | +| OAuth2 Provider | Install | +| ---------------------------------------------------------------- | ------------------------------------------------- | +| [Facebook](https://github.com/thephpleague/oauth2-facebook) | composer require league/oauth2-facebook | +| [GitHub](https://github.com/thephpleague/oauth2-github) | composer require league/oauth2-github | +| [GitLab](https://github.com/omines/oauth2-gitlab) | composer require omines/oauth2-gitlab | +| [LinkedIn](https://github.com/thephpleague/oauth2-linkedin) | composer require league/oauth2-linkedin | +| [Google](https://github.com/thephpleague/oauth2-google) | composer require league/oauth2-google | +| [Eve Online](https://github.com/evelabs/oauth2-eveonline) | composer require evelabs/oauth2-eveonline | +| [Instagram](https://github.com/thephpleague/oauth2-instagram) | composer require league/oauth2-instagram | +| [VKontakte](https://github.com/j4k/oauth2-vkontakte) | composer require j4k/oauth2-vkontakte | +| [Bitbucket](https://github.com/stevenmaguire/oauth2-bitbucket) | composer require stevenmaguire/oauth2-bitbucket | +| [Odnoklassniki](https://github.com/rakeev/oauth2-odnoklassniki) | composer require aego/oauth2-odnoklassniki | +| [Slack](https://github.com/adam-paterson/oauth2-slack) | composer require adam-paterson/oauth2-slack | +| [Yandex](https://github.com/rakeev/oauth2-yandex) | composer require aego/oauth2-yandex | +| [Vimeo](https://github.com/saf33r/oauth2-vimeo) | composer require saf33r/oauth2-vimeo | +| [Yahoo](https://github.com/hayageek/oauth2-yahoo) | composer require hayageek/oauth2-yahoo | +| generic | configure any unsupported provider | @@ -482,7 +482,7 @@ knpu_oauth2_client: # whether to check OAuth2 "state": defaults to true # use_state: true - + # will create service: "knpu.oauth2.client.slack" # an instance of: KnpU\OAuth2ClientBundle\Client\Provider\SlackClient # composer require adam-paterson/oauth2-slack @@ -498,7 +498,23 @@ knpu_oauth2_client: # whether to check OAuth2 "state": defaults to true # use_state: true - + + # will create service: "knpu.oauth2.client.yandex" + # an instance of: KnpU\OAuth2ClientBundle\Client\Provider\YandexClient + # composer require aego/oauth2-yandex + yandex: + # must be "yandex" - it activates that type! + type: yandex + # add and configure client_id and client_secret in parameters.yml + client_id: %yandex_client_id% + client_secret: %yandex_client_secret% + # a route name you'll create + redirect_route: connect_yandex_check + redirect_params: {} + + # whether to check OAuth2 "state": defaults to true + # use_state: true + # will create service: "knpu.oauth2.client.vimeo" # an instance of: KnpU\OAuth2ClientBundle\Client\Provider\VimeoClient # composer require saf33r/oauth2-vimeo @@ -514,7 +530,7 @@ knpu_oauth2_client: # whether to check OAuth2 "state": defaults to true # use_state: true - + # will create service: "knpu.oauth2.client.yahoo" # an instance of: KnpU\OAuth2ClientBundle\Client\Provider\YahooClient # composer require hayageek/oauth2-yahoo @@ -529,23 +545,7 @@ knpu_oauth2_client: redirect_params: {} # whether to check OAuth2 "state": defaults to true - # use_state: true - - # will create service: "knpu.oauth2.client.yandex" - # an instance of: KnpU\OAuth2ClientBundle\Client\Provider\YandexClient - # composer require aego/oauth2-yandex - yandex: - # must be "yandex" - it activates that type! - type: yandex - # add and configure client_id and client_secret in parameters.yml - client_id: %yandex_client_id% - client_secret: %yandex_client_secret% - # a route name you'll create - redirect_route: connect_yandex_check - redirect_params: {} - - # whether to check OAuth2 "state": defaults to true - # use_state: true + # use_state: true ``` ## Configuring a Generic Provider