PHPackages                             guigzz/silex-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. [Authentication &amp; Authorization](/categories/authentication)
4. /
5. guigzz/silex-wsse

ActiveLibrary[Authentication &amp; Authorization](/categories/authentication)

guigzz/silex-wsse
=================

Full WSSE authentication for silex projects based on Symfony2 documentation

0.1.0(10y ago)2423MITPHPPHP &gt;=5.3.2

Since Mar 20Pushed 10y ago1 watchersCompare

[ Source](https://github.com/guigzz/silex-wsse)[ Packagist](https://packagist.org/packages/guigzz/silex-wsse)[ Docs](https://github.com/guigzz/silex-wsse)[ RSS](/packages/guigzz-silex-wsse/feed)WikiDiscussions master Synced 2d ago

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

Silex WSSE authentication
=========================

[](#silex-wsse-authentication)

This library provides an implementation of WSSE authentication based on the [Symfony2 documentation](http://symfony.com/doc/current/cookbook/security/custom_authentication_provider.html).

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

[](#installation)

#### Composer

[](#composer)

```
"require": {
	"guigzz/silex-wsse": "~0.1.0"
}
```

Usage
-----

[](#usage)

- Register the Guigzz\\Wsse\\WsseAuthServiceProvider
- Pass you own User provider to the Wsse provider
- Use it in your security firewall config
- You are done!

A basic config example would look like this:

```
$app->register(new Guigzz\Wsse\WsseAuthServiceProvider(), array(
    'wsse.security_dir'         => __DIR__ . '/../cache/security',
    'wsse.valid_time_window'    => 300,
    'wsse.user'                 => $app->share(function ($app) { return $app['dao.user']; })
));
```

And use it in your security firewall like this:

```
$app['security.firewalls'] = array(
    'api'   => array(
        'pattern'   => '^/api/',
        'stateless' => true,
        'wsse'      => true,
    )
);
```

#### Configuration

[](#configuration)

- 'wsse.security\_dir' (optional): where to store auth cache infos (default to your-app-root-dir/cache/security)
- 'wsse.valid\_time\_window' (optional): time in seconds of a WSSE validation window (default to 300s). For more infos, please read the Symfony2 documentation about Wsse.
- 'wsse.user' (mandatory): your app's user provider, so as to authenticate incoming requests.

License
-------

[](#license)

This project is under the [MIT License](https://opensource.org/licenses/MIT).

###  Health Score

25

—

LowBetter than 35% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity13

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity48

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

Unknown

Total

1

Last Release

3755d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/4454890?v=4)[Guillaume Sallaber](/maintainers/guigzz)[@guigzz](https://github.com/guigzz)

---

Top Contributors

[![guigzz](https://avatars.githubusercontent.com/u/4454890?v=4)](https://github.com/guigzz "guigzz (1 commits)")

---

Tags

apiauthAuthenticationsilexwebservicestatelesswsse

### Embed Badge

![Health badge](/badges/guigzz-silex-wsse/health.svg)

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

###  Alternatives

[symfony/security-bundle

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

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

Symfony Security Component - HTTP Integration

1.7k177.2M375](/packages/symfony-security-http)[api-platform/core

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

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

Admin generator for Symfony applications

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

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

3.6k251.7M11.4k](/packages/symfony-framework-bundle)[nelmio/api-doc-bundle

Generates documentation for your REST API from attributes

2.4k67.4M260](/packages/nelmio-api-doc-bundle)

PHPackages © 2026

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