PHPackages                             martynasbakanas/jumpcloud-eu - 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. martynasbakanas/jumpcloud-eu

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

martynasbakanas/jumpcloud-eu
============================

JumpCloud OpenID Connect (OIDC) Provider for Laravel Socialite

1.0.0(4mo ago)075MITPHPPHP ^8.0

Since Dec 30Pushed 4mo agoCompare

[ Source](https://github.com/martynasbakanas/JumpCloud-EU)[ Packagist](https://packagist.org/packages/martynasbakanas/jumpcloud-eu)[ RSS](/packages/martynasbakanas-jumpcloud-eu/feed)WikiDiscussions master Synced 1mo ago

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

Changes
-------

[](#changes)

This repository contains updated auth url's to work in EU.

Jumpcloud doesn't really provide this information but if you are logged in into your jumpcloud account and you are in `console.eu.jumpcloud.com`, to use SSO you'll need to use `https://oauth.id.eu.jumpcloud.com` instead of `https://oauth.id.jumpcloud.com`

This fork does exactly that.

### Add configuration to `config/services.php`

[](#add-configuration-to-configservicesphp)

```
'jumpcloud' => [
    'client_id' => env('JUMPCLOUD_CLIENT_ID'),
    'client_secret' => env('JUMPCLOUD_CLIENT_SECRET'),
    'redirect' => env('JUMPCLOUD_REDIRECT_URI')
],
```

JumpCloud
=========

[](#jumpcloud)

```
composer require socialiteproviders/jumpcloud
```

Installation &amp; Basic Usage
------------------------------

[](#installation--basic-usage)

Please see the [Base Installation Guide](https://socialiteproviders.com/usage/), then follow the provider specific instructions below.

### Add configuration to `config/services.php`

[](#add-configuration-to-configservicesphp-1)

```
'jumpcloud' => [
    'client_id' => env('JUMPCLOUD_CLIENT_ID'),
    'client_secret' => env('JUMPCLOUD_CLIENT_SECRET'),
    'redirect' => env('JUMPCLOUD_REDIRECT_URI')
],
```

### Add provider event listener

[](#add-provider-event-listener)

#### Laravel 11+

[](#laravel-11)

In Laravel 11, the default `EventServiceProvider` provider was removed. Instead, add the listener using the `listen` method on the `Event` facade, in your `AppServiceProvider` `boot` method.

- Note: You do not need to add anything for the built-in socialite providers unless you override them with your own providers.

```
Event::listen(function (\SocialiteProviders\Manager\SocialiteWasCalled $event) {
    $event->extendSocialite('jumpcloud', \SocialiteProviders\JumpCloud\Provider::class);
});
```

Laravel 10 or below Configure the package's listener to listen for `SocialiteWasCalled` events. Add the event to your `listen[]` array in `app/Providers/EventServiceProvider`. See the [Base Installation Guide](https://socialiteproviders.com/usage/) for detailed instructions.

```
protected $listen = [
    \SocialiteProviders\Manager\SocialiteWasCalled::class => [
        // ... other providers
        \SocialiteProviders\JumpCloud\JumpCloudExtendSocialite::class.'@handle',
    ],
];
```

### Usage

[](#usage)

You should now be able to use the provider like you would regularly use Socialite (assuming you have the facade installed):

```
return Socialite::driver('jumpcloud')->redirect();
```

```
{{ Socialite::with('jumpcloud')->redirect()->getTargetUrl() }}
```

### Returned User fields

[](#returned-user-fields)

- `id`
- `nickname`
- `name`
- `email`

###  Health Score

35

—

LowBetter than 80% of packages

Maintenance75

Regular maintenance activity

Popularity9

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity39

Early-stage or recently created project

 Bus Factor2

2 contributors hold 50%+ of commits

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

137d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/b116a6a0b1c5e0e56af69ee26fc1778bd709a6c161851699b441982188099930?d=identicon)[MartynasB](/maintainers/MartynasB)

---

Top Contributors

[![atymic](https://avatars.githubusercontent.com/u/50683531?v=4)](https://github.com/atymic "atymic (3 commits)")[![lucasmichot](https://avatars.githubusercontent.com/u/513603?v=4)](https://github.com/lucasmichot "lucasmichot (3 commits)")[![martynasbakanas](https://avatars.githubusercontent.com/u/6791629?v=4)](https://github.com/martynasbakanas "martynasbakanas (2 commits)")[![ysalitrynskyi](https://avatars.githubusercontent.com/u/25203302?v=4)](https://github.com/ysalitrynskyi "ysalitrynskyi (1 commits)")

---

Tags

laravelprovideroauthsocialiteOpenIdconnectjumpcloud

### Embed Badge

![Health badge](/badges/martynasbakanas-jumpcloud-eu/health.svg)

```
[![Health](https://phpackages.com/badges/martynasbakanas-jumpcloud-eu/health.svg)](https://phpackages.com/packages/martynasbakanas-jumpcloud-eu)
```

###  Alternatives

[socialiteproviders/microsoft

Microsoft OAuth2 Provider for Laravel Socialite

326.1M13](/packages/socialiteproviders-microsoft)[socialiteproviders/instagram

Instagram OAuth2 Provider for Laravel Socialite

421.9M5](/packages/socialiteproviders-instagram)[socialiteproviders/steam

Steam OpenID Provider for Laravel Socialite

21536.2k2](/packages/socialiteproviders-steam)[kovah/laravel-socialite-oidc

OpenID Connect OAuth2 Provider for Laravel Socialite

2073.7k](/packages/kovah-laravel-socialite-oidc)[socialiteproviders/kakao

Kakao OAuth2 Provider for Laravel Socialite

10484.7k4](/packages/socialiteproviders-kakao)

PHPackages © 2026

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