Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into more-state-csrf-hashes
Browse files Browse the repository at this point in the history
Conflicts:
	src/OAuth/OAuth2/Service/Facebook.php
  • Loading branch information
d-ph committed Sep 19, 2015
2 parents 1e6a184 + 824e138 commit 7d99126
Show file tree
Hide file tree
Showing 87 changed files with 7,493 additions and 79 deletions.
5 changes: 3 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
.idea
vendor
.DS_Store
composer.lock
examples/init.php
examples/init.php
atlassian-ide-plugin.xml
nbproject/
9 changes: 7 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
sudo: false
language: php

php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm

matrix:
allow_failures:
- php: hhvm

before_script:
- composer self-update
- composer install
- pyrus install pear/PHP_CodeSniffer
- phpenv rehash

script:
- phpcs --standard=psr2 src/
- phpunit --coverage-text
18 changes: 17 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
PHPoAuthLib
===========
**NOTE: I'm looking for someone who could help to maintain this package alongside me, just because I don't have a ton of time to devote to it. However, I'm still going to keep trying to pay attention to PRs, etc.**

PHPoAuthLib provides oAuth support in PHP 5.3+ and is very easy to integrate with any project which requires an oAuth client.

[![Build Status](https://travis-ci.org/Lusitanian/PHPoAuthLib.png?branch=master)](https://travis-ci.org/Lusitanian/PHPoAuthLib)
Expand Down Expand Up @@ -40,15 +42,17 @@ Features

Service support
---------------
The library supports both oAuth 1.x and oAuth 2.0 compliant services. A list of currently implemented services can be found below.
The library supports both oAuth 1.x and oAuth 2.0 compliant services. A list of currently implemented services can be found below.

Included service implementations
--------------------------------
- OAuth1
- 500px
- BitBucket
- Etsy
- FitBit
- Flickr
- QuickBooks
- Scoop.it!
- Tumblr
- Twitter
Expand All @@ -57,24 +61,36 @@ Included service implementations
- OAuth2
- Amazon
- BitLy
- Bitrix24
- Box
- Dailymotion
- DeviantArt
- Dropbox
- Eve Online
- Facebook
- Foursquare
- GitHub
- Google
- Harvest
- Heroku
- Hubic
- Instagram
- Jawbone UP
- LinkedIn
- Mailchimp
- Microsoft
- Nest
- Netatmo
- Parrot Flower Power
- PayPal
- Pocket
- Reddit
- RunKeeper
- SoundCloud
- Spotify
- Strava
- Ustream
- Vimeo
- Vkontakte
- Yammer
- more to come!
Expand Down
7 changes: 6 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@
{
"name": "Pieter Hordijk",
"email": "[email protected]"
},
{
"name": "Elliot Chance",
"email": "[email protected]"
}
],
"require": {
Expand All @@ -19,7 +23,8 @@
"require-dev": {
"symfony/http-foundation": "~2.1",
"predis/predis": "0.8.*@dev",
"phpunit/phpunit": "3.7.*"
"phpunit/phpunit": "3.7.*",
"squizlabs/php_codesniffer": "2.*"
},
"suggest": {
"symfony/http-foundation": "Allows using the Symfony Session storage backend.",
Expand Down
Loading

0 comments on commit 7d99126

Please sign in to comment.