PHPackages                             manuxi/sulu-testimonials-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. manuxi/sulu-testimonials-bundle

ActiveSymfony-bundle

manuxi/sulu-testimonials-bundle
===============================

Say hello to Sulu testimonials!

1.5.2(2mo ago)1131MITPHPPHP ^8.2CI passing

Since Feb 25Pushed 2mo ago1 watchersCompare

[ Source](https://github.com/manuxi/SuluTestimonialsBundle)[ Packagist](https://packagist.org/packages/manuxi/sulu-testimonials-bundle)[ Docs](https://github.com/manuxi/SuluTestimonialsBundle)[ RSS](/packages/manuxi-sulu-testimonials-bundle/feed)WikiDiscussions 3.x Synced 1mo ago

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

SuluTestimonialsBundle
======================

[](#sulutestimonialsbundle)

[![php workflow](https://github.com/manuxi/SuluTestimonialsBundle/actions/workflows/php.yml/badge.svg)](https://github.com/manuxi/SuluTestimonialsBundle/actions/workflows/php.yml/badge.svg)[![symfony workflow](https://github.com/manuxi/SuluTestimonialsBundle/actions/workflows/symfony.yml/badge.svg)](https://github.com/manuxi/SuluTestimonialsBundle/actions/workflows/symfony.yml/badge.svg)[![License: MIT](https://camo.githubusercontent.com/fdf2982b9f5d7489dcf44570e714e3a15fce6253e0cc6b5aa61a075aac2ff71b/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c6963656e73652d4d49542d79656c6c6f772e737667)](https://github.com/manuxi/SuluTestimonialsBundle/blob/main/LICENSE)[![GitHub Tag](https://camo.githubusercontent.com/6a7cf585c8781435eac980d2b838733eca00f566571e1a5f1456bbd0507da8f6/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f762f7461672f6d616e7578692f53756c7554657374696d6f6e69616c7342756e646c65)](https://camo.githubusercontent.com/6a7cf585c8781435eac980d2b838733eca00f566571e1a5f1456bbd0507da8f6/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f762f7461672f6d616e7578692f53756c7554657374696d6f6e69616c7342756e646c65)[![Supports Sulu 3.0 or later](https://camo.githubusercontent.com/1acd578889a1fbe054144d04f3f326418a78683e35a850c9d25cd5377502b6d4/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f53756c752d2533453d332e302d3030383863633f636f6c6f723d303062326466)](https://camo.githubusercontent.com/1acd578889a1fbe054144d04f3f326418a78683e35a850c9d25cd5377502b6d4/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f53756c752d2533453d332e302d3030383863633f636f6c6f723d303062326466)

**English** | [Deutsch](README.de.md)

A Sulu CMS bundle for managing customer testimonials, reviews, and quotes with configurable star ratings.

[![Admin View](docs/img/template.extended.en.png)](docs/img/template.extended.en.png)

✨ Features
----------

[](#-features)

- **Testimonial Management** - Create, edit, and publish customer testimonials
- **Star Rating System** - Configurable 5 or 10 point rating scale with star symbols
- **Contact Integration** - Link testimonials to Sulu contacts
- **Smart Content Provider** - Use testimonials in any Sulu page via Smart Content
- **Selection Content Types** - Single and multiple testimonial selection
- **Workflow Support** - Draft/Published workflow with versioning
- **Multi-language** - Full translation support
- **SEO &amp; Sitemap** - Built-in SEO and sitemap integration
- **Search Integration** - Admin and website search indexes
- **Trash Support** - Restore deleted testimonials
- **Activity Logging** - Track all changes

Breaking change
---------------

[](#breaking-change)

- **uuid** - since 1.5.0 (not compatible to previous versions)

📋 Requirements
--------------

[](#-requirements)

- PHP 8.2+
- Sulu CMS 3.0+
- Symfony 6.4+ / 7.0+

👩🏻‍🏭 Installation
-----------------

[](#‍-installation)

### Step 1: Install via Composer

[](#step-1-install-via-composer)

```
composer require manuxi/sulu-testimonials-bundle
```

### Step 2: Register the Bundle

[](#step-2-register-the-bundle)

If not using Symfony Flex, add to `config/bundles.php`:

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

### Step 3: Configure Routes

[](#step-3-configure-routes)

Add to `config/routes/sulu_admin.yaml`:

```
SuluTestimonialsBundle:
    resource: '@SuluTestimonialsBundle/Resources/config/routes_admin.yaml'
```

### Step 4: Update Database

[](#step-4-update-database)

```
# Preview changes
php bin/console doctrine:schema:update --dump-sql

# Apply changes
php bin/console doctrine:schema:update --force
```

### Step 5: Build Admin Assets

[](#step-5-build-admin-assets)

```
cd assets/admin
npm install
npm run build
```

### Step 6: Grant Permissions

[](#step-6-grant-permissions)

1. Go to **Settings → User Roles** in Sulu Admin
2. Select the appropriate role
3. Enable permissions for **Testimonials**
4. Save and reload

🧶 Configuration
---------------

[](#-configuration)

Create `config/packages/sulu_testimonials.yaml`:

```
sulu_testimonials:
    rating:
        max_value: 5            # 5 or 10 point scale
        default_value: 3        # Default rating for new testimonials
        use_star_symbols: true  # Show stars in admin dropdown
        use_star_widget: false  # Use interactive star widget (future)
```

See [Configuration Documentation](docs/configuration.en.md) for all options.

🎣 Usage
-------

[](#-usage)

### Smart Content

[](#smart-content)

Use testimonials in any page template:

```

        Testimonials
        Testimonials

```

### Selection Types

[](#selection-types)

Single testimonial:

```

        Featured Testimonial

```

Multiple testimonials:

```

        Testimonials

```

### Twig Template

[](#twig-template)

```
{% for testimonial in testimonials %}

        {{ testimonial.text|raw }}

        {% if testimonial.contact %}
            {{ testimonial.contact.fullName }}
        {% endif %}

        {# Rating display - uses global variable #}
        {% if testimonial.rating >= 0 %}
            {% set maxRating = testimonials_rating_max_value %}

                {{ testimonial.rating }}/{{ maxRating }}

        {% endif %}

{% endfor %}
```

📖 Documentation
---------------

[](#-documentation)

- [Installation](docs/installation.en.md)
- [Configuration](docs/configuration.en.md)
- [Usage &amp; Templates](docs/usage.en.md)
- [Rating System](docs/rating.en.md)
- [Admin List Customization](docs/admin-list.en.md)

🔌 Optional Integrations
-----------------------

[](#-optional-integrations)

### Star Rating in Admin Lists

[](#star-rating-in-admin-lists)

If you have [SuluTweaksBundle](https://github.com/manuxi/SuluTweaksBundle) installed, you can enable star rating display in admin lists. See [Admin List Documentation](docs/admin-list.en.md).

👩‍🍳 Contributing
----------------

[](#‍-contributing)

Contributions are welcome! Please feel free to submit issues or pull requests.

📄 License
---------

[](#-license)

This bundle is released under the [MIT License](LICENSE).

###  Health Score

44

—

FairBetter than 92% of packages

Maintenance88

Actively maintained with recent releases

Popularity9

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity59

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

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 ~22 days

Recently: every ~8 days

Total

18

Last Release

62d ago

Major Versions

1.5.2 → 3.x-dev2026-03-11

PHP version history (2 changes)1.0.0PHP ^8.1

1.3.6PHP ^8.2

### Community

Maintainers

![](https://www.gravatar.com/avatar/8ce067feaa3f9ece08d78385c401aab7d72e9e8ee64d77d584f884b6725ad9de?d=identicon)[manuxi](/maintainers/manuxi)

---

Top Contributors

[![manuxi](https://avatars.githubusercontent.com/u/11303615?v=4)](https://github.com/manuxi "manuxi (7 commits)")

---

Tags

customer-feedbackreviewsstar-ratingsulu-26sulu-30sulu-bundlesulu-cmstestimonialssulusulucmstestimonialssulu-bundle

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/manuxi-sulu-testimonials-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/manuxi-sulu-testimonials-bundle/health.svg)](https://phpackages.com/packages/manuxi-sulu-testimonials-bundle)
```

###  Alternatives

[sylius/sylius

E-Commerce platform for PHP, based on Symfony framework.

8.4k5.6M651](/packages/sylius-sylius)[sulu/sulu

Core framework that implements the functionality of the Sulu content management system

1.3k1.3M152](/packages/sulu-sulu)[easycorp/easyadmin-bundle

Admin generator for Symfony applications

4.3k16.7M310](/packages/easycorp-easyadmin-bundle)[prestashop/prestashop

PrestaShop is an Open Source e-commerce platform, committed to providing the best shopping cart experience for both merchants and customers.

9.0k15.4k](/packages/prestashop-prestashop)[shopware/platform

The Shopware e-commerce core

3.3k1.5M3](/packages/shopware-platform)[ec-cube/ec-cube

EC-CUBE EC open platform.

78527.0k1](/packages/ec-cube-ec-cube)

PHPackages © 2026

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