index
:
OAuth2/oauth2-server-php.git
add-coveralls-support
develop
main
php5.2-develop
psr-7
v2.x
version-1.14.2
A library for implementing an OAuth2 Server in php (mirror)
Andrey V.Kosteltsev
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
Age
Commit message (
Expand
)
Author
Files
Lines
2013-04-03
Place the realm & scope values in ""
King'ori Maina
1
-2
/
+2
2013-04-02
being anal and replacing 'xxx === null' with 'is_null(xxx)'
Brent Shaffer
1
-1
/
+1
2013-04-02
Merge pull request #74 from bojanz/no_error_on_missing_token_param
Brent Shaffer
1
-10
/
+4
2013-04-02
Merge branch 'develop' of http://github.com/bshaffer/oauth2-server-php into d...
Brent Shaffer
1
-1
/
+0
2013-04-02
fixes #90 - sets response property in handleAuthorizeRequest
Brent Shaffer
1
-1
/
+1
2013-04-02
Remove redundant code in getAccessTokenData(), fix token check that is too st...
Bojan Zivanovic
1
-10
/
+4
2013-03-30
Remove duplicated line in Server.php
Bojan Zivanovic
1
-1
/
+0
2013-03-27
adds jwt bearer to default grant types
Brent Shaffer
1
-0
/
+5
2013-03-27
fixes responseType and grantType bugs so they can be explicitly set in constr...
Brent Shaffer
1
-9
/
+37
2013-03-27
fixes merging of parameters in Authorize Controller so that redirect_uri does...
Brent Shaffer
1
-1
/
+1
2013-03-24
Fix incorrect references to config variables.
Bojan Zivanovic
1
-2
/
+2
2013-03-23
resolving pull request #77
Brent Shaffer
7
-63
/
+63
2013-03-23
links to docs for error message
Brent Shaffer
1
-0
/
+1
2013-03-16
fixes #78 - makes db and config protected properties in Pdo storage class
Brent Shaffer
1
-2
/
+2
2013-03-06
Pass the default scope to storage.
Bojan Zivanovic
2
-4
/
+3
2013-03-03
Merge pull request #73 from bojanz/pass_scope
Brent Shaffer
2
-3
/
+3
2013-03-02
Merge pull request #75 from bojanz/get_status_text
Brent Shaffer
1
-0
/
+6
2013-03-02
Add a getter function for the Response status text.
Bojan Zivanovic
1
-0
/
+6
2013-03-02
Rename controllers to match spec (access -> resource, grant -> token).
Bojan Zivanovic
7
-63
/
+63
2013-03-02
Server doesn't pass $scope to getAccessTokenData().
Bojan Zivanovic
2
-3
/
+3
2013-03-02
Make the allow_implicit config check less strict.
Bojan Zivanovic
1
-1
/
+1
2013-03-02
makes client_id an optional parameter to getSupportedScopes - not all applica...
Brent Shaffer
3
-3
/
+3
2013-03-02
fixes #65 - Mongo storage returns false instead of null
Brent Shaffer
1
-4
/
+4
2013-03-02
tweaks to mongo tests
Brent Shaffer
1
-46
/
+46
2013-03-02
Merge branch 'develop' of http://github.com/julien-c/oauth2-server-php into j...
Brent Shaffer
1
-5
/
+11
2013-02-26
Set the authorization header even if it's not Basic Auth
Adam Zimmerman
1
-5
/
+8
2013-02-26
Let the application determine allowed scopes based on client
Adam Zimmerman
4
-5
/
+8
2013-02-20
Storage\Mongo tests
Julien Chaumond
1
-5
/
+11
2013-02-20
Make Mongo collection helper function protected
Julien Chaumond
1
-1
/
+1
2013-02-20
Implement MongoDB storage class stub
Julien Chaumond
1
-0
/
+247
2013-02-20
Remove redundancy in setUser example implementation
Julien Chaumond
1
-1
/
+1
2013-02-03
adding HttpBasic client assertion type
Brent Shaffer
1
-0
/
+87
2013-02-03
adds HttpBasic ClientAssertionType, refactors GrantController to match this
Brent Shaffer
4
-95
/
+29
2013-02-02
fixes #63 - updates all drafts to RFCs where applicable
Brent Shaffer
17
-38
/
+38
2013-01-29
addresses #50 - adds better testing
Brent Shaffer
1
-8
/
+17
2013-01-29
Merge pull request #61 from dazz/bugfix/Continue
Brent Shaffer
1
-1
/
+1
2013-01-29
fixes #60 - allows scope to be passed in either request or query
Brent Shaffer
1
-1
/
+2
2013-01-29
removed the continue as it was from the foreach before
dazz
1
-1
/
+1
2013-01-29
after a more careful reading of the spec (and modeling github api), removes d...
Brent Shaffer
3
-9
/
+11
2013-01-29
Merge branch 'develop' of github.com:bshaffer/oauth2-server-php into develop
Brent Shaffer
2
-14
/
+11
2013-01-29
Updated JWT Bearer to check jwt->decode() for false instead of trying to catc...
Francis Chuang
1
-10
/
+7
2013-01-29
renames Util_JWT to Encyrption_JWT to be explicit
Brent Shaffer
2
-5
/
+5
2013-01-29
renames OAuth2_Util_Scope to OAuth2_Scope for cleaner and less annoying class...
Brent Shaffer
4
-5
/
+5
2013-01-29
adds full support for scope customization and docs to boot
Brent Shaffer
9
-26
/
+162
2013-01-29
JWT's decode() now returns false instead of throwing exceptions.
Francis Chuang
1
-5
/
+5
2013-01-29
updates docs at the top of all storage files
Brent Shaffer
9
-23
/
+46
2013-01-28
Merge pull request #49 from F21/master
Brent Shaffer
1
-5
/
+25
2013-01-28
addresses #54 - adds tests for Server class
Brent Shaffer
2
-28
/
+50
2013-01-28
Merge branch 'develop' of github.com:bshaffer/oauth2-server-php into develop
Brent Shaffer
1
-1
/
+1
2013-01-28
Revert "Updated creating an instance of the GrantedController to not force th...
Brent Shaffer
1
-1
/
+1
[prev]
[next]