anzusystems / auth-bundle
Anzu authorization services
Package info
github.com/anzusystems/auth-bundle
Type:symfony-bundle
pkg:composer/anzusystems/auth-bundle
5.0.0
2026-02-13 11:07 UTC
Requires
- php: >=8.4
- ext-json: *
- ext-redis: *
- anzusystems/common-bundle: ^9.0|^10.0|^11.0
- doctrine/common: ^3.3
- lcobucci/clock: ^3.0
- lcobucci/jwt: ^5.5
Requires (Dev)
- doctrine/orm: ^2.13|^3.0
- nelmio/api-doc-bundle: ^5.9
- slevomat/coding-standard: 8.20.0
- symfony/test-pack: ^1.0
- symplify/easy-coding-standard: ^13.0
- vimeo/psalm: ^6.0
README
Provides authorization functionality among Anzusystems' projects.
Installation
From within container execute the following command to download the latest version of the bundle:
$ composer require anzusystems/auth-bundle --no-scripts
Step 3: Use the Bundle
Configure the AnzuAuthBundle in config/anzu_systems_auth.yaml:
anzu_systems_auth:
cookie:
domain: .anzusystems.localhost
secure: false # use true for PROD environment!
jwt:
audience: anz
algorithm: ES256 # enum (ES256|RS256), default "ES256"
public_cert: '%env(base64:AUTH_JWT_PUBLIC_CERT)%' # string representation of a public certificate
private_cert: '%env(base64:AUTH_JWT_PRIVATE_CERT)%' # string representation of a private certificate
authorization:
enabled: true
refresh_token:
storage:
redis:
service_id: SharedTokenStorageRedis # service id of \Redis instance
auth_redirect_default_url: http://admin-dam.anzusystems.localhost
auth_redirect_query_url_allowed_pattern: '^https?://(.*)\.anzusystems\.localhost(:\d{2,5})$'
type: json_credentials
Configure the SecurityBundle in config/security.yaml:
security:
providers:
app_user_provider_email:
entity:
class: App\Entity\User
property: email
auth:
pattern: ^/api/auth/
stateless: true
provider: app_user_provider_email
json_login:
check_path: auth_login
success_handler: AnzuSystems\AuthBundle\Security\AuthenticationSuccessHandler
failure_handler: AnzuSystems\AuthBundle\Security\AuthenticationFailureHandler
logout:
path: auth_logout
access_control:
- { path: ^/api/auth/, roles: PUBLIC_ACCESS }
Configure routing:
$routes
->import('@AnzuSystemsAuthBundle/Controller/Api/JsonCredentialsAuthController.php', type: 'attribute')
->prefix('/api/auth/');