PHPackages                             tourze/user-follow-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. [Authentication &amp; Authorization](/categories/authentication)
4. /
5. tourze/user-follow-bundle

ActiveSymfony-bundle[Authentication &amp; Authorization](/categories/authentication)

tourze/user-follow-bundle
=========================

Symfony bundle for user follow/follower relationship management with event handling and EasyAdmin integration

0.0.1(7mo ago)00MITPHPCI passing

Since Nov 14Pushed 6mo agoCompare

[ Source](https://github.com/tourze/user-follow-bundle)[ Packagist](https://packagist.org/packages/tourze/user-follow-bundle)[ RSS](/packages/tourze-user-follow-bundle/feed)WikiDiscussions master Synced today

READMEChangelog (1)Dependencies (38)Versions (2)Used By (0)

User Follow Bundle
==================

[](#user-follow-bundle)

[English](README.md) | [中文](README.zh-CN.md)

A Symfony bundle that provides user follow/follower relationship management functionality with comprehensive event handling and EasyAdmin integration.

Features
--------

[](#features)

- **User Follow System**: Follow/unfollow users with status management
- **Follow Statistics**: Get followers count and following count
- **Event System**: Dispatch events when users follow/unfollow others
- **EasyAdmin Integration**: Built-in admin interface for managing follow relationships
- **Doctrine Integration**: Full database persistence with indexing
- **Blameable &amp; Timestampable**: Track who created the relationship and when

Installation
------------

[](#installation)

```
composer require tourze/user-follow-bundle
```

Configuration
-------------

[](#configuration)

Add the bundle to your `bundles.php`:

```
return [
    // ...
    Tourze\UserFollowBundle\UserFollowBundle::class => ['all' => true],
];
```

Basic Usage
-----------

[](#basic-usage)

### Using the Follow Service

[](#using-the-follow-service)

```
