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

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

glokon/crowd-auth
=================

A simple way to implement Atlassian Crowd Authentication into your application.

0.9.0(10y ago)4211MITPHPPHP &gt;=5.4.0CI failing

Since Aug 3Pushed 10y ago1 watchersCompare

[ Source](https://github.com/GLOKON/crowd-auth)[ Packagist](https://packagist.org/packages/glokon/crowd-auth)[ Docs](https://github.com/GLOKON/crowd-auth)[ RSS](/packages/glokon-crowd-auth/feed)WikiDiscussions master Synced today

READMEChangelogDependencies (6)Versions (20)Used By (0)

CrowdAuth
=========

[](#crowdauth)

[![Build Status](https://camo.githubusercontent.com/74dbfb779453f90ba7eaaf522144eb11ccd08388c96259357cc289910ce6f388/68747470733a2f2f7472617669732d63692e6f72672f474c4f4b4f4e2f63726f77642d617574682e737667)](https://travis-ci.org/GLOKON/crowd-auth)[![Latest Stable Version](https://camo.githubusercontent.com/b7aea4e320b6b8b2cd5894426e2d5023d1f2dc8481a531d037050a75ee3141ad/68747470733a2f2f706f7365722e707567782e6f72672f676c6f6b6f6e2f63726f77642d617574682f762f737461626c65)](https://packagist.org/packages/glokon/crowd-auth)[![Total Downloads](https://camo.githubusercontent.com/c977fec8ccfd212b975e6206c51f66b6fc996b95d238379e58140cd9a4c9b7a7/68747470733a2f2f706f7365722e707567782e6f72672f676c6f6b6f6e2f63726f77642d617574682f646f776e6c6f616473)](https://packagist.org/packages/glokon/crowd-auth)[![Latest Unstable Version](https://camo.githubusercontent.com/1e91710d91d19be4d138415828e4ebc5aa69225cef99cc24bda4d6722b0b916d/68747470733a2f2f706f7365722e707567782e6f72672f676c6f6b6f6e2f63726f77642d617574682f762f756e737461626c65)](https://packagist.org/packages/glokon/crowd-auth)[![License](https://camo.githubusercontent.com/c6e78381b02eb6d85c758882a489e2def8f69f9cedb93d6af17e535d26818ec9/68747470733a2f2f706f7365722e707567782e6f72672f676c6f6b6f6e2f63726f77642d617574682f6c6963656e7365)](https://packagist.org/packages/glokon/crowd-auth)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/9f7b5c35e27ff7c84c8b4628447ead301d02d631c16c826ae4056c544bf90e49/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f474c4f4b4f4e2f63726f77642d617574682f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/GLOKON/crowd-auth/?branch=master)[![Code Coverage](https://camo.githubusercontent.com/37200ee0ed8a576b081daefefaff2a7bb1ee023793d1a6b8a2ea194fcee0b6a9/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f474c4f4b4f4e2f63726f77642d617574682f6261646765732f636f7665726167652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/GLOKON/crowd-auth/?branch=master)

A simple way to implement Atlassian Crowd Authentication into your application.

**SUPPORTED VERSIONS:** Atlassian Crowd 2.1 and later versions only.

Quick start
-----------

[](#quick-start)

### Laravel 4.2.x

[](#laravel-42x)

In the `require` key of `composer.json` file add the following

```
"glokon/crowd-auth": "*"

```

Run the Composer update comand

```
$ composer update

```

In your `config/app.php` add `'GLOKON\CrowdAuth\CrowdAuthServiceProvider'` to the end of the `providers` array

```
'providers' => array(

    'Illuminate\Foundation\Providers\ArtisanServiceProvider',
    'Illuminate\Auth\AuthServiceProvider',
    ...
    'GLOKON\CrowdAuth\CrowdAuthServiceProvider',
),
```

Now generate the Crowd Auth migrations (make sure you have your database configuration set up):

```
$ php artisan migrate --package="glokon/crowd-auth"

```

This will setup three tables - `crowd_users`, `crowd_groups` and `crowdgroup_crowduser`.

Now publish the config files for this package:

```
$ php artisan config:publish "glokon/crowd-auth"

```

Once the configuration is published go to your `config/packages/glokon/crowd-auth/crowdauth.php` and configure your Atlassian Crowd settings.

After you have configured your Atlassian Crowd settings you need to change the `driver` setting in `config/auth.php` to:

```
'driver' => 'crowd-auth',
```

Once all this is completed you can simply use `Auth::Attempt()` and it will attempt to login using your Atlassian Crowd server.

###  Health Score

27

—

LowBetter than 47% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity57

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 98.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 ~0 days

Total

19

Last Release

3980d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/3080979?v=4)[Daniel McAssey](/maintainers/DanielMcAssey)[@DanielMcAssey](https://github.com/DanielMcAssey)

---

Top Contributors

[![DanielMcAssey](https://avatars.githubusercontent.com/u/3080979?v=4)](https://github.com/DanielMcAssey "DanielMcAssey (58 commits)")[![scrutinizer-auto-fixer](https://avatars.githubusercontent.com/u/6253494?v=4)](https://github.com/scrutinizer-auto-fixer "scrutinizer-auto-fixer (1 commits)")

---

Tags

laravelauthAuthenticationatlassiancrowd

###  Code Quality

TestsPHPUnit

### Embed Badge

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

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

###  Alternatives

[spatie/laravel-permission

Permission handling for Laravel 12 and up

12.9k102.4M1.4k](/packages/spatie-laravel-permission)[php-open-source-saver/jwt-auth

JSON Web Token Authentication for Laravel and Lumen

84611.1M63](/packages/php-open-source-saver-jwt-auth)[laravel/pulse

Laravel Pulse is a real-time application performance monitoring tool and dashboard for your Laravel application.

1.7k15.1M131](/packages/laravel-pulse)[psalm/plugin-laravel

Psalm plugin for Laravel

3355.3M345](/packages/psalm-plugin-laravel)[roots/acorn

Framework for Roots WordPress projects built with Laravel components.

9762.4M131](/packages/roots-acorn)[hasinhayder/tyro

Tyro - The ultimate Authentication, Authorization, and Role &amp; Privilege Management solution for Laravel 12 &amp; 13

6783.6k6](/packages/hasinhayder-tyro)

PHPackages © 2026

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