-
Notifications
You must be signed in to change notification settings - Fork 452
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into more-state-csrf-hashes
Conflicts: src/OAuth/OAuth2/Service/Facebook.php
- Loading branch information
Showing
87 changed files
with
7,493 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,10 @@ | |
{ | ||
"name": "Pieter Hordijk", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Elliot Chance", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"require": { | ||
|
@@ -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.", | ||
|
Oops, something went wrong.