PHPackages                             seiffert/crowd-auth-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. seiffert/crowd-auth-bundle

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

seiffert/crowd-auth-bundle
==========================

This bundle allows Symfony apps to authenticate users against Atlassian Crowd.

2143[1 issues](https://github.com/seiffert/crowd-auth-bundle/issues)[1 PRs](https://github.com/seiffert/crowd-auth-bundle/pulls)PHP

Since Jul 28Pushed 11y agoCompare

[ Source](https://github.com/seiffert/crowd-auth-bundle)[ Packagist](https://packagist.org/packages/seiffert/crowd-auth-bundle)[ RSS](/packages/seiffert-crowd-auth-bundle/feed)WikiDiscussions master Synced 4w ago

READMEChangelogDependenciesVersions (1)Used By (0)

Crowd Auth Bundle
=================

[](#crowd-auth-bundle)

This bundle allows Symfony apps to authenticate users against Atlassian Crowd.

[![Build Status](https://camo.githubusercontent.com/e4a561a8cd6ced4a277b3df74f3b357b2d270e08a363327d9f90dec37b06bb5e/68747470733a2f2f7472617669732d63692e6f72672f73656966666572742f63726f77642d617574682d62756e646c652e706e673f6272616e63683d6d6173746572)](https://travis-ci.org/seiffert/crowd-auth-bundle)

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

[](#installation)

Require the package via composer:

`composer.json`:

```
    "require": {
        ...
        "seiffert/crowd-auth-bundle": "dev-master",
        ...
    }

```

Activate the bundle and it's dependent bundle `SeiffertCrowdRestBundle` in your AppKernel:

`app/AppKernel.php`:

```
    public function registerBundles()
    {
        $bundles = array(
            ...
            new Seiffert\CrowdRestBundle\SeiffertCrowdRestBundle(),
            new Seiffert\CrowdRestBundle\SeiffertCrowdAuthBundle(),
            ...
        );
        ...
    }

```

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

[](#configuration)

To connect to your organization's Crowd instance, you have to add some entries to your project configuration (e.g. in `app/config/config.yml`):

```
seiffert_crowd_rest:
    url: https:///crowd/rest/usermanagement/1
    application:
        name:
        password:

```

- **crowd-url**: Your Crowd instance's Url/Hostname.
- **application-name**: The name of your application registered in Crowd.
- **application-password**: The password of your application registered in Crowd.

To use the bundle's authentication provider, you can use it as an extension for Symfony's `SecurityBundle`. In your project's `security.yml`, you need to configure a plaintext password encoder, the bundle's user provider and use the key `crowd_login` insteadof `form_login` in your firwall definition. Everything else works exactly as with a normal form login: You decide about URLs and the login form.

**Example `security.yml`:**

```
security:
    encoders:
        PS\CrowdRestBundle\Crowd\User: plaintext

    role_hierarchy:
        ROLE_ADMIN:       ROLE_USER
        ROLE_SUPER_ADMIN: [ROLE_USER, ROLE_ADMIN, ROLE_ALLOWED_TO_SWITCH]

    providers:
        crowd:
            id: ps.crowd_auth.user_provider

    firewalls:
        dev:
            pattern:  ^/(_(profiler|wdt)|css|images|js)/
            security: false

        login:
            pattern:  ^/auth/login$
            security: false

        secured_area:
            pattern:    ^/
            crowd_login:
                check_path: /auth/check
                login_path: /auth/login
            logout:
                path:   /auth/logout
                target: /

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

```

###  Health Score

20

—

LowBetter than 13% of packages

Maintenance10

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 88.9% 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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/7d576bda5c70255f203244318b1b634fb94131d5ce94becb13ae39f583f3a492?d=identicon)[PSeiffert](/maintainers/PSeiffert)

---

Top Contributors

[![seiffert](https://avatars.githubusercontent.com/u/1111118?v=4)](https://github.com/seiffert "seiffert (8 commits)")[![frastel](https://avatars.githubusercontent.com/u/433380?v=4)](https://github.com/frastel "frastel (1 commits)")

### Embed Badge

![Health badge](/badges/seiffert-crowd-auth-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/seiffert-crowd-auth-bundle/health.svg)](https://phpackages.com/packages/seiffert-crowd-auth-bundle)
```

###  Alternatives

[kartik-v/yii2-password

Useful password strength validation utilities for Yii Framework 2.0

791.3M17](/packages/kartik-v-yii2-password)

PHPackages © 2026

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