PHPackages                             athlan/revive-symfony-security-bundle - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. athlan/revive-symfony-security-bundle

ActiveProject[Utility &amp; Helpers](/categories/utility)

athlan/revive-symfony-security-bundle
=====================================

Banner Google Web Designer hosting tool

1.0.1(9y ago)019MITPHP &gt;=5.6.0

Since Jun 29Compare

[ Source](https://github.com/athlan/revive-symfony-security-bundle)[ Packagist](https://packagist.org/packages/athlan/revive-symfony-security-bundle)[ RSS](/packages/athlan-revive-symfony-security-bundle/feed)WikiDiscussions Synced today

READMEChangelogDependencies (8)Versions (3)Used By (0)

Revive Symfony Security integration bundle
==========================================

[](#revive-symfony-security-integration-bundle)

[![travis](https://camo.githubusercontent.com/2899d4cae07a09f23b3ad8455ec9a846ac0fc242ad2eba5bee162a2f8d128745/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f6174686c616e2f7265766976652d73796d666f6e792d73656375726974792d62756e646c652f6d61737465722e737667)](https://camo.githubusercontent.com/2899d4cae07a09f23b3ad8455ec9a846ac0fc242ad2eba5bee162a2f8d128745/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f6174686c616e2f7265766976652d73796d666f6e792d73656375726974792d62756e646c652f6d61737465722e737667)[![license](https://camo.githubusercontent.com/c41f6d3428f04efb3074dcbeddeed0cbfd1492bba3e7a19b2f88a34718a0f7de/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f6174686c616e2f7265766976652d73796d666f6e792d73656375726974792d62756e646c652e737667)](https://camo.githubusercontent.com/c41f6d3428f04efb3074dcbeddeed0cbfd1492bba3e7a19b2f88a34718a0f7de/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f6174686c616e2f7265766976652d73796d666f6e792d73656375726974792d62756e646c652e737667)[![version](https://camo.githubusercontent.com/5df027d7470a3a36feb4e70ffd1c9cb1dae6cc1a4cdc6470c72cce3010370e16/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6174686c616e2f7265766976652d73796d666f6e792d73656375726974792d62756e646c652e737667)](https://camo.githubusercontent.com/5df027d7470a3a36feb4e70ffd1c9cb1dae6cc1a4cdc6470c72cce3010370e16/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6174686c616e2f7265766976652d73796d666f6e792d73656375726974792d62756e646c652e737667)

This bundle allows you to enable Symfony Security authentication by providing Revive Aderver credentials.

It allow you to build custom tools around Revive in Symfony Framework.

Installation
============

[](#installation)

1. Add composer dependency

```
    "require": {
        // ...

        "athlan/revive-symfony-security-bundle": "1.0.0"

        // ...
    },

```

2. Add bundle to `AppKernel.php`

```
    public function registerBundles()
    {
        $bundles = [

            // ...

            new Revive\ReviveAuthenticationBundle\ReviveAuthenticationBundle(),

            // ...

```

3. Define several services in your container:

```
services:
    # create user session repository service
    revive_user_sessions:
        parent: revive_authentication.repository.user_session.xml_rpc
        arguments:
            # you can provide here custom configured xml_rpc client or get the existing pre-configured one
            - "@revive_authentication.xml_rpc.client"

            # address to your Revive xml-rpc
            # Example: http://domain.com/www/api/v2/xmlrpc/
            # you can use parameter mechanism here
            - "%revive_service_url%"

    # create form-autehnticacor that exchanges UsernamePasswordToken from user provided form
    # to ReviveAuthenticationToken
    revive_authenticator:
        parent: revive_authentication.authenticator.login_form_authenticator
        arguments: ["@revive_user_sessions"]

    # create logout listener to destroy remote sessions (optional, but recommended)
    revive_authenticator_logout_handler:
        parent: revive_authentication.authenticator.logout_handler
        arguments: ["@revive_user_sessions"]

```

4. Configure security.yml

```
security:
    # regiter Revive user provider
    providers:
        revive:
            id: revive_authentication.user_provider.revive_user_prototype

    firewalls:
        main:
            anonymous: ~
            simple_form:
                # regiter Revive form authenticator
                authenticator: revive_authenticator
                check_path: /login
                login_path: /login
                csrf_token_generator: security.csrf.token_manager
            logout:
                path: /logout
                target: /
                handlers: [ revive_authenticator_logout_handler ]

    access_control:
        - { path: ^/login, roles: IS_AUTHENTICATED_ANONYMOUSLY }
        - { path: ^/, roles: IS_AUTHENTICATED_FULLY }

```

###  Health Score

25

—

LowBetter than 36% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community2

Small or concentrated contributor base

Maturity59

Maturing project, gaining track record

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~14 days

Total

2

Last Release

3638d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/742606eed947fa5901c0a42a19885bc8802c7e93d1d714bb5b4dca73bf8c3797?d=identicon)[athlan](/maintainers/athlan)

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/athlan-revive-symfony-security-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/athlan-revive-symfony-security-bundle/health.svg)](https://phpackages.com/packages/athlan-revive-symfony-security-bundle)
```

###  Alternatives

[neuron-core/neuron-ai

The PHP Agentic Framework.

2.0k496.1k33](/packages/neuron-core-neuron-ai)[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3661.2M46](/packages/tencentcloud-tencentcloud-sdk-php)[civicrm/civicrm-core

Open source constituent relationship management for non-profits, NGOs and advocacy organizations.

751284.3k37](/packages/civicrm-civicrm-core)[roundcube/roundcubemail

The Roundcube Webmail suite

7.0k1.4k3](/packages/roundcube-roundcubemail)[spatie/laravel-export

Create a static site bundle from a Laravel app

672139.5k6](/packages/spatie-laravel-export)[eslazarev/wildberries-sdk

Wildberries OpenAPI clients (generated).

252.5k](/packages/eslazarev-wildberries-sdk)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
