All Versions
73
Latest Version
Avg Release Cycle
68 days
Latest Release
1023 days ago
Changelog History
Page 6
Changelog History
Page 6
-
v4.0.1 Changes
November 09, 2014- Alias the master branch in composer.json (Issue #243)
- ๐ Numerous PHP CodeSniffer fixes (Issue #244)
- โก๏ธ .travis.yml update (Issue #245)
- The getAccessToken method should return an AccessTokenEntity object instead of a string in ResourceServer.php (#246)
-
v4.0.0 Changes
November 08, 2014- Complete rewrite
- ๐ Check out the documentation - http://oauth2.thephpleague.com
-
v3.2.0 Changes
April 16, 2014- โ Added the ability to change the algorithm that is used to generate the token strings (Issue #151)
-
v3.1.2 Changes
February 26, 2014- ๐ Support Authorization being an environment variable. See more
-
v3.1.1 Changes
December 05, 2013- Normalize headers when
getallheaders()
is available (Issues #108 and #114)
- Normalize headers when
-
v3.1.0 Changes
December 05, 2013- No longer necessary to inject the authorisation server into a grant, the server will inject itself
- โ Added test for 1419ba8cdcf18dd034c8db9f7de86a2594b68605
-
v3.0.1 Changes
December 02, 2013- โ Forgot to tell TravisCI from testing PHP 5.3
-
v3.0.0 Changes
December 02, 2013- ๐ Fixed spelling of Implicit grant class (Issue #84)
- ๐ท Travis CI now tests for PHP 5.5
- ๐ Fixes for checking headers for resource server (Issues #79 and #)
- The word "bearer" now has a capital "B" in JSON output to match OAuth 2.0 spec
- ๐ All grants no longer remove old sessions by default
- ๐ All grants now support custom access token TTL (Issue #92)
- ๐ All methods which didn't before return a value now return
$this
to support method chaining - โ Removed the build in DB providers - these will be put in their own repos to remove baggage in the main repository
- โ Removed support for PHP 5.3 because this library now uses traits and will use other modern PHP features going forward
- ๐ Moved some grant related functions into a trait to reduce duplicate code
-
v2.1.1 Changes
June 02, 2013- โ Added conditional
isValid()
flag to check for Authorization header only (thanks @alexmcroberts) - ๐ Fixed semantic meaning of
requireScopeParam()
andrequireStateParam()
by changing their default value to true - โก๏ธ Updated some duff docblocks
- Corrected array key call in Resource.php (Issue #63)
- โ Added conditional
-
v2.1.0 Changes
May 10, 2013- ๐ Moved zetacomponents/database to "suggest" in composer.json. If you rely on this feature you now need to include " zetacomponents/database" into "require" key in your own composer.json. (Issue #51)
- ๐ New method in Refresh grant called
rotateRefreshTokens()
. Pass intrue
to issue a new refresh token each time an access token is refreshed. This parameter needs to be set to true in order to request reduced scopes with the new access token. (Issue #47) - ๐ Rename
key
column in oauth_scopes table toscope
askey
is a reserved SQL word. (Issue #45) - 0๏ธโฃ The
scope
parameter is no longer required by default as per the RFC. (Issue #43) - 0๏ธโฃ You can now set multiple default scopes by passing an array into
setDefaultScope()
. (Issue #42) - The password and client credentials grants now allow for multiple sessions per user. (Issue #32)
- Scopes associated to authorization codes are not held in their own table (Issue #44)
- โก๏ธ Database schema updates.