crockett95 / projectplaceoauth
Service wrapper for Projectplace OAuth 1.0 for use with the PHPOAuthLib library by Lusitanian.
Requires
- lusitanian/oauth: ~0.3
Requires (Dev)
- phpunit/phpunit: ~4.3
This package is not auto-updated.
Last update: 2024-11-05 02:58:59 UTC
README
Service wrapper for Projectplace OAuth 1.0 for use with the PHPOAuthLib library by Lusitanian.
PHPoAuthLib provides oAuth support in PHP 5.3+ and is very easy to integrate with any project which requires an oAuth client.
More about the Projectplace API.
Installation
The library is available on Packagist. The recommended way to install it is with composer.
Add as a dependency in composer.json
:
{ "require": { "crockett95/projectplaceoauth": "~0.1" } }
Or require with composer
:
composer require crockett95/projectplaceoauth
Usage
Use the ServiceFactory::registerService
method from the PHPOAuthLib library to
register the new service.
<?php $serviceFactory = new \OAuth\ServiceFactory(); $serviceFactory->registerService('projectplace', 'Crockett95\\ProjectPlace\\OAuthService');
See the example for more information.
Contributing
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :D
Credits
Most of the code is a blatant ripoff of PHPOAuthLib library.
License
Released under the terms of the MIT license.