howlowck / meetup-oauth2-provider
There is no license information available for the latest version (0.1.0) of this package.
Meetup OAuth2 Client Provider for Leagues OAuth2-Client
0.1.0
2014-11-13 07:42 UTC
Requires
- php: >=5.4.0
- league/oauth2-client: ~0.4.0
Requires (Dev)
- mockery/mockery: ~0.9
This package is not auto-updated.
Last update: 2024-11-05 04:03:01 UTC
README
This package is made for the League's OAuth2 Client.
Install
From command line:
composer require howlowck/meetup-oauth2-provider
To Instantiate a Provider
$provider = new \Howlowck\OAuth2\Client\Provider\Meetup(array( 'clientId' => 'YOUR_CONSUMER_KEY', 'clientSecret' => 'YOUR_CONSUMER_SECRET', 'redirectUri' => 'your-redirect-url', 'scopes' => array('basic'), ));
Notes
For more consumption details, please refer to the readme on League's OAuth2 Client.