youshido / token-authenticator
Symfony bundle to allow you token based authentication
Installs: 8 077
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 4
Forks: 2
Type:symfony-bundle
Requires
- php: >=5.5
- symfony/framework-bundle: ~2.3|~3.0|~4.0
README
This bundle allow you to use a token authentication mechanism similar to OAuth but much more simplified.
Installation
First, enable bundle in your AppKernel
by adding it to the registerBundles
method:
... new Youshido\TokenAuthenticationBundle\TokenAuthenticationBundle(),
Then create provider and firewall under app/config/security.yml
(if you don't have encoder yet – might as well add it here):
security: providers: api_user_provider: id: token_user_provider encoders: AppBundle\Entity\User: md5 firewalls: api_firewall: pattern: ^/.* stateless: true simple_preauth: authenticator: token_authenticator provider: api_user_provider anonymous: ~
Now add your model class name to the service declaration app/config/config.yml
:
token_authentication: user_model: "AppBundle\\Entity\\User"