PHPackages                             alcalyn/symfony-wsse - 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. [Security](/categories/security)
4. /
5. alcalyn/symfony-wsse

ActiveLibrary[Security](/categories/security)

alcalyn/symfony-wsse
====================

WSSE implementation based on Symfony examples in documentation.

1.1.0(8y ago)016511MITPHPPHP &gt;=5.3.2

Since Sep 12Pushed 8y agoCompare

[ Source](https://github.com/alcalyn/symfony-wsse)[ Packagist](https://packagist.org/packages/alcalyn/symfony-wsse)[ Docs](https://github.com/alcalyn/symfony-wsse)[ RSS](/packages/alcalyn-symfony-wsse/feed)WikiDiscussions master Synced yesterday

READMEChangelog (6)Dependencies (3)Versions (9)Used By (1)

Symfony WSSE
============

[](#symfony-wsse)

This library provide classes used in Symfony documentation, about a [WSSE implementation](http://symfony.com/doc/current/cookbook/security/custom_authentication_provider.html).

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

[](#installation)

Via Composer

```
{
    "require": {
        "alcalyn/symfony-wsse": "~1.0.0"
    }
}
```

Usage
-----

[](#usage)

You have to register library class in your Symfony project.

### Silex

[](#silex)

See [SilexWSSE](https://github.com/alcalyn/silex-wsse) project.

### Symfony full stack

[](#symfony-full-stack)

Following [Symfony2 documentation about WSSE](http://symfony.com/doc/current/cookbook/security/custom_authentication_provider.html):

Register services:

```
# app/config/services.yml
services:
    wsse.security.authentication.provider:
        class: Alcalyn\Wsse\Security\Authentication\Provider\WsseProvider
        arguments:
            - "" # User Provider
            - "%kernel.cache_dir%/security/nonces"
        public: false

    wsse.security.authentication.listener:
        class: Alcalyn\Wsse\Security\Firewall\WsseListener
        arguments: ["@security.token_storage", "@security.authentication.manager"]
        public: false
```

Register your WSSE security context:

```
// src/AppBundle/AppBundle.php
namespace AppBundle;

use Symfony\Component\HttpKernel\Bundle\Bundle;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Alcalyn\Wsse\DependencyInjection\Security\Factory\WsseFactory;

class AppBundle extends Bundle
{
    public function build(ContainerBuilder $container)
    {
        parent::build($container);

        $extension = $container->getExtension('security');
        $extension->addSecurityListenerFactory(new WsseFactory());
    }
}
```

Now you can use WSSE security in your project:

```
# app/config/security.yml
security:
    # ...

    firewalls:
        wsse_secured:
            pattern:   ^/api/
            stateless: true
            wsse:      true
```

License
-------

[](#license)

This project is under [MIT License](LICENSE).

###  Health Score

29

—

LowBetter than 57% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity63

Established project with proven stability

 Bus Factor1

Top contributor holds 93.3% 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 ~124 days

Recently: every ~183 days

Total

7

Last Release

3202d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/17f0c4d65197a7aed6ecc8fdedd5a097c7238c9be19aca08c92c05d38fd8c29e?d=identicon)[alcalyn](/maintainers/alcalyn)

---

Top Contributors

[![alcalyn](https://avatars.githubusercontent.com/u/1588144?v=4)](https://github.com/alcalyn "alcalyn (14 commits)")[![rixbeck](https://avatars.githubusercontent.com/u/761149?v=4)](https://github.com/rixbeck "rixbeck (1 commits)")

---

Tags

symfonyuserwsse

### Embed Badge

![Health badge](/badges/alcalyn-symfony-wsse/health.svg)

```
[![Health](https://phpackages.com/badges/alcalyn-symfony-wsse/health.svg)](https://phpackages.com/packages/alcalyn-symfony-wsse)
```

###  Alternatives

[api-platform/core

Build a fully-featured hypermedia or GraphQL API in minutes!

2.6k51.2M339](/packages/api-platform-core)[easycorp/easyadmin-bundle

Admin generator for Symfony applications

4.3k17.9M388](/packages/easycorp-easyadmin-bundle)[symfony/framework-bundle

Provides a tight integration between Symfony components and the Symfony full-stack framework

3.6k251.7M11.6k](/packages/symfony-framework-bundle)[symfony/security-bundle

Provides a tight integration of the Security component into the Symfony full-stack framework

2.5k185.6M2.4k](/packages/symfony-security-bundle)[symfony/security-http

Symfony Security Component - HTTP Integration

1.7k177.2M382](/packages/symfony-security-http)[flow-php/flow

PHP ETL - Extract Transform Load - Data processing framework

85036.3k](/packages/flow-php-flow)

PHPackages © 2026

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