webmunkeez / security-bundle
JWT based security for Symfony.
Package info
github.com/yannissgarra/security-bundle
Type:symfony-bundle
pkg:composer/webmunkeez/security-bundle
v1.2.0
2023-12-08 19:44 UTC
Requires
- php: >=8.1
- bjeavons/zxcvbn-php: ^1.3
- egulias/email-validator: ^4.0
- firebase/php-jwt: ^6.10
- symfony/config: ^6.4
- symfony/dependency-injection: ^6.4
- symfony/options-resolver: ^6.4
- symfony/security-bundle: ^6.4
- symfony/serializer: ^6.4
- symfony/uid: ^6.4
- symfony/validator: ^6.4
- twig/twig: ^3.8
Requires (Dev)
- phpunit/phpunit: ^9.6
- symfony/browser-kit: ^6.4
- symfony/framework-bundle: ^6.4
- symfony/phpunit-bridge: ^6.4
- symfony/yaml: ^6.4
This package is auto-updated.
Last update: 2026-08-09 01:07:21 UTC
README
This bundle unleashes a JWT based security on Symfony applications.
Installation
Use Composer to install this bundle:
$ composer require webmunkeez/security-bundle
Add the bundle in your application kernel:
// config/bundles.php return [ // ... Webmunkeez\SecurityBundle\WebmunkeezSecurityBundle::class => ['all' => true], // ... ];