composer require ns/token-bundleEdit AppKernel.php and add the bundle
new NS\TokenBundle\NSTokenBundle(),Edit app/config/config.yml
ns_token:
generator:
id: <some random string>
key: <another random string>
issuer: <string (often the site source)>
short_expiration: 3600
long_expiration: 2592000
signer: Lcobucci\JWT\Signer\Rsa\Sha256 #defaultYou can use your own signer by implementing the Lcobucci\JWT\Signer interface.