A spec compliant, secure by default PHP OAuth 2.0 Server
Go to file
2014-04-06 22:04:19 +01:00
sql Added cascading relationship between oauth_sessions_authcodes and oauth_sessions 2013-05-10 17:32:39 -07:00
src/League/OAuth2/Server Updated docblock 2014-04-06 22:01:56 +01:00
tests removed unused use statement 2014-03-11 12:42:26 -04:00
.gitattributes Merge branch 'refs/heads/master' into develop 2013-09-26 11:18:10 +01:00
.gitignore Updated .gitignore 2013-11-25 23:59:37 +00:00
.travis.yml Ninja 5.6 test 2014-02-11 12:27:35 -05:00
CHANGELOG.md Updated change log and version number 2014-04-06 22:04:12 +01:00
composer.json Updated change log and version number 2014-04-06 22:04:12 +01:00
CONTRIBUTING.md Update CONTRIBUTING.md 2013-12-06 10:50:22 +00:00
license.txt Updated License 2013-05-08 19:04:40 -07:00
phpunit.xml Added html coverage 2013-11-25 23:59:10 +00:00
phpunit.xml.dist Removed printer [ci skip] 2013-07-30 10:13:47 +01:00
README.md Fixed lots of links, and improved readability of links. 2014-02-26 17:45:32 -05:00

PHP OAuth 2.0 Server

Latest Stable Version Coverage Status Total Downloads Bitdeli Badge

A standards compliant OAuth 2.0 authorization server and resource server written in PHP.

Package Installation

The framework is provided as a Composer package which can be installed by adding the package to your composer.json file:

{
	"require": {
		"league/oauth2-server": "3.*"
	}
}

Framework Integrations


The library features 100% unit test code coverage. To run the tests yourself run phpunit from the project root.

Build Status [master]

Build Status [develop]

Current Features

Authorization Server

The authorization server is a flexible class and the following core specification grants are implemented:

An overview of the different OAuth 2.0 grants can be found in the wiki.

Resource Server

The resource server allows you to secure your API endpoints by checking for a valid OAuth access token in the request and ensuring the token has the correct scope(s) (i.e. permissions) to access resources.

Custom grants

Custom grants can be created easily by implementing an interface. Check out the custom grant guide.

Tutorials and Documentation

Changelog

See the project releases page

Contributing

Please see CONTRIBUTING for details.

Support

Bugs and feature request are tracked on GitHub

License

This package is released under the MIT License. See the bundled LICENSE file for details.

Credits

This code is principally developed and maintained by Alex Bilbie.

Special thanks to:

The initial code was developed as part of the Linkey project which was funded by JISC under the Access and Identity Management programme.

Bitdeli Badge