spomky-labs / jose-bundle
Symfony2 Jose Bundle
Installs: 31 257
Dependents: 1
Suggesters: 0
Security: 0
Stars: 9
Watchers: 6
Forks: 1
Open Issues: 1
Type:symfony-bundle
Requires
- spomky-labs/jose: ^6.1|^7.0
- symfony/config: ^2.8|^3.0|^4.0
- symfony/console: ^2.8|^3.0|^4.0
- symfony/dependency-injection: ^2.8|^3.0|^4.0
- symfony/framework-bundle: ^2.8|^3.0|^4.0
- symfony/http-kernel: ^2.8|^3.0|^4.0
Requires (Dev)
- ext-curl: *
- behat/behat: ^3.1
- behat/mink: ^1.5
- behat/mink-browserkit-driver: ^1.1
- behat/mink-extension: ^2.0
- behat/symfony2-extension: ^2.1
- symfony/finder: ^2.8|^3.0|^4.0
- symfony/var-dumper: ^2.8|^3.0|^4.0
- v2.3.0
- v2.2.2
- v2.2.1
- v2.2.0
- dev-master / 2.1.x-dev
- v2.1.1
- v2.1.0
- v2.0.1
- v2.0.0
- v1.0.3
- v1.0.2
- v1.0.1
- v1.0.0
- v1.0.0-beta13
- v1.0.0-beta12
- v1.0.0-beta11
- v1.0.0-beta10
- v1.0.0-beta9
- v1.0.0-beta8
- v1.0.0-beta7
- v1.0.0-beta6
- v1.0.0-beta5
- v1.0.0-beta4
- v1.0.0-beta3
- v1.0.0-beta2
- v1.0.0-beta1
- dev-guardrails/initial
- dev-sf4
This package is auto-updated.
Last update: 2022-02-01 12:51:47 UTC
README
Help me out for a couple of 🍻!
⚠️⚠️⚠️
We highly recommend you to use the new JWT Framework project instead of this bundle.
- Active support of this bundle is provided until end of 2018.
- Security support will be provided from 2019 and up to end of 2020.
A migration guide will be/is available in the documentation of the new project.
⚠️⚠️⚠️
This Symfony bundle provides services to create, load, verify or decrypt JWT. It uses spomky-Labs/jose to ease encryption/decryption and signature/verification of JWS and JWE.
The Release Process
The release process is described here.
Prerequisites
This library needs at least:
Continuous Integration
It has been successfully tested using PHP 5.6
, PHP 7
and HHVM
.
We also track bugs and code quality using Scrutinizer-CI and Sensio Insight.
Coding Standards are verified by StyleCI.
Code coverage is not performed.
We rely on tests performed on the library and we only have implemented Behavior driven development
(BDD) to test this bundle.
Installation
The preferred way to install this library is to rely on Composer:
composer require spomky-labs/jose-bundle
Then, add the bundle into your kernel:
<?php use Symfony\Component\HttpKernel\Kernel; class AppKernel extends Kernel { public function registerBundles() { $bundles = [ ... new SpomkyLabs\JoseBundle\SpomkyLabsJoseBundle(), ]; return $bundles; } }
Configuration
This bundle needs to be configured. Please see this page to know how to configure it.
How to use
Have a look at this page to know hot to configure and use this bundle.
Bundle Integration
This bundle provides a Configuration Helper. This helper provides an easy way to create all services through the configuration of another bundle.
Please read this page to know how to easily configure the bundle from another bundle.
Contributing
Requests for new features, bug fixed and all other ideas to make this library useful are welcome. The best contribution you could provide is by fixing the opened issues where help is wanted
Please make sure to follow these best practices.
Licence
This software is release under MIT licence.