PHPackages                             jonnx/laravel-socialite-atlassian - 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. jonnx/laravel-socialite-atlassian

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

jonnx/laravel-socialite-atlassian
=================================

Laravel Socialite driver for Atlassian Connected Apps

1.0.0(6y ago)16[18 PRs](https://github.com/Jonnx/laravel-socialite-atlassian/pulls)MITPHP

Since Nov 4Pushed 3y ago1 watchersCompare

[ Source](https://github.com/Jonnx/laravel-socialite-atlassian)[ Packagist](https://packagist.org/packages/jonnx/laravel-socialite-atlassian)[ RSS](/packages/jonnx-laravel-socialite-atlassian/feed)WikiDiscussions master Synced 1mo ago

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

Laravel Socialite Atlassian Driver
==================================

[](#laravel-socialite-atlassian-driver)

[![CircleCI](https://camo.githubusercontent.com/f4765effd8228f766734be9f1c31777af53bf51083623ab1e433982d169102ac/68747470733a2f2f636972636c6563692e636f6d2f67682f4a6f6e6e782f6c61726176656c2d736f6369616c6974652d61746c61737369616e2f747265652f6d61737465722e7376673f7374796c653d737667)](https://circleci.com/gh/Jonnx/laravel-socialite-atlassian/tree/master)

Leverage Laravel Socialtie to provide login and api access authorization for you application with the Connected Apps API for Atlassian Cloud products.

[![Larvel Socialite Atlassian Preview](https://github.com/Jonnx/laravel-socialite-atlassian/raw/master/preview.gif?raw=true)](https://github.com/Jonnx/laravel-socialite-atlassian/blob/master/preview.gif?raw=true)

Getting Started
---------------

[](#getting-started)

There are only a few steps to register the `atlassian` socialite driver. After that you can leverage the generic Socialite implemententation to authenticate users.

#### Install Composer Package

[](#install-composer-package)

```
composer require jonnx/laravel-socialite-atlassian

```

#### Update Configuration

[](#update-configuration)

You will need to add your client application configuration to the `config/services.php` file. You can generate these keys registering your application on .

```
    'atlassian' => [
        'client_id'        => env('ATLASSIAN_APP_ID'),
        'client_secret'    => env('ATLASSIAN_APP_SECRET'),
        'redirect'         => '/login/callback',
        'base_uri'         => 'https://id.atlassian.com',
    ],

```

Make sure you add &amp; set the following 2 values in your `.env` file:

```
ATLASSIAN_APP_ID=
ATLASSIAN_APP_SECRET=

```

#### Register Atlassian Socialite Driver

[](#register-atlassian-socialite-driver)

Update the `AppServiceProvider.php` boot function to call a private method to extend Laravel Socialite with the new driver.

```
    /**
     * Bootstrap any application services.
     *
     * @return void
     */
    public function boot()
    {
        $this->bootAtlassianSocialite();
    }

    private function bootAtlassianSocialite()
    {
        $socialite = $this->app->make('Laravel\Socialite\Contracts\Factory');
        $socialite->extend(
            'atlassian',
            function ($app) use ($socialite) {
                $config = $app['config']['services.atlassian'];
                return $socialite->buildProvider(AtlassianSocialiteProvider::class, $config);
            }
        );
    }

```

#### Done

[](#done)

Now you should be able to easily redirect users to Atlassian to login and request permissions:

```
return Socialite::with('atlassian')
    ->scopes([
        'read:me',
        'read:jira-work',
        'write:jira-work'
        'offline_access'
    ])
    ->redirect();

```

and resolve the user information from Atlassian on callback:

```
$atlassianUser = Socialite::driver('atlassian')->user();

```

License
-------

[](#license)

The Laravel Socialite Atlassian driver is open-source software licensed under the [MIT license](https://opensource.org/licenses/MIT).

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity66

Established project with proven stability

 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.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

2382d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/223ceec567c8ac8fba483b2c9d52f538ea0d9a1cb02a90dc5d75e933df164663?d=identicon)[Jonnx](/maintainers/Jonnx)

---

Top Contributors

[![Jonnx](https://avatars.githubusercontent.com/u/1399475?v=4)](https://github.com/Jonnx "Jonnx (16 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (1 commits)")[![semantic-release-bot](https://avatars.githubusercontent.com/u/32174276?v=4)](https://github.com/semantic-release-bot "semantic-release-bot (1 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/jonnx-laravel-socialite-atlassian/health.svg)

```
[![Health](https://phpackages.com/badges/jonnx-laravel-socialite-atlassian/health.svg)](https://phpackages.com/packages/jonnx-laravel-socialite-atlassian)
```

###  Alternatives

[socialiteproviders/manager

Easily add new or override built-in providers in Laravel Socialite.

42442.0M544](/packages/socialiteproviders-manager)[dutchcodingcompany/filament-socialite

Social login for Filament through Laravel Socialite

213914.9k9](/packages/dutchcodingcompany-filament-socialite)[andrewdwallo/filament-companies

A comprehensive Laravel authentication and authorization system designed for Filament, focusing on multi-tenant company management.

34450.0k2](/packages/andrewdwallo-filament-companies)[devdojo/auth

The auth package to make authentication in your laravel applications easy to use.

61979.4k2](/packages/devdojo-auth)[genealabs/laravel-socialiter

Automatically manage user persistence and resolution for any Laravel Socialite provider.

133403.3k](/packages/genealabs-laravel-socialiter)[chrisreedio/socialment

Provides Socialite functionality for Filament.

10884.8k1](/packages/chrisreedio-socialment)

PHPackages © 2026

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