Download the PHP package michalkvasnicak/oauth2-server-bundle without Composer
On this page you can find all versions of the php package michalkvasnicak/oauth2-server-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download michalkvasnicak/oauth2-server-bundle
More information about michalkvasnicak/oauth2-server-bundle
Files in michalkvasnicak/oauth2-server-bundle
Package oauth2-server-bundle
Short Description Symfony OAuth 2.0 server bundle
License MIT
Homepage http://github.com/michalkvasnicak/oauth2-server-bundle
Informations about the package oauth2-server-bundle
OAuth 2.0 Server Bundle
OAuth 2.0 server bundle for Symfony 2 framework
Requirements
- PHP >= 5.4
- HHVM
Installation
Using composer
Configuration
Basic configuration
These are defaults.
Tell the Security bundle to use this bundle
Register routes
In routing.yml
of your application register bundle.
Storage
You can use michalkvasnicak/OAuth2ServerMongoDBBundle bundle or create own model. If you want to create own model you have to define user provider and services needed for grant types you are going to use.
Grant types
There are pre-installed grant types already. To use them just enable them (by default they are all disabled).
Own grant types
You can use your own grant types too, just create services and tag them as oauth2_server.grant_type
. All services has to implement OAuth2\GrantType\IGrantType
.
TODO:
- Authorization endpoint
All versions of oauth2-server-bundle with dependencies
michalkvasnicak/oauth2-server Version ^1.0.0-beta3
symfony/framework-bundle Version ~2.6 | ~3.0
symfony/security-bundle Version ~2.6 | ~3.0