PHPackages                             laravelevetools/eve-socialite-provider - 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. laravelevetools/eve-socialite-provider

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

laravelevetools/eve-socialite-provider
======================================

Implements eve's SSO authentication.

1.0(4y ago)1119GPL-2.0PHPPHP ^7.3|^8.0

Since Feb 13Pushed 4y ago1 watchersCompare

[ Source](https://github.com/LaravelEveTools/evesocialiteprovider)[ Packagist](https://packagist.org/packages/laravelevetools/eve-socialite-provider)[ RSS](/packages/laravelevetools-eve-socialite-provider/feed)WikiDiscussions master Synced yesterday

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

EVE Online Socialite Provider
-----------------------------

[](#eve-online-socialite-provider)

Dedicated Socialite provider for laravel based on SeAT's service [eveseat/services/socialite](https://github.com/eveseat/services/tree/master/src/Socialite/EveOnline)
Just without all the other SeAT stuff.

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

[](#installation)

Install the composer package. Laravel will automatically call the service provider.

```
composer require laravelevetools/eve-socialite-provider

```

You will need to get application and client key from [Eve's Devloper Portal](https://developers.eveonline.com/)
You can store the values in your .env file.

Make sure you register the client\_id, secret and callback url in config/services.php

```
    'eveonline' => [
        'client_id'    => env('EVE_CLIENT_ID'),
        'client_secret' => env('EVE_CLIENT_SECRET'),
        'redirect'      => env('EVE_CALLBACK_URL')
    ]
```

Usage
-----

[](#usage)

In your controller you will need two functions. A redirect, and a callback function. make sure in your routes, you define the same callback route as in the developer portal.

```
use App\Http\Controllers\Controller;
use Laravel\Socialite\Contracts\Factory as Socialite;

class TestLoginController extends Controller
{
    const scopes = []; //define your scopes here

    public function redirect(Socialite $social){

        return $social->driver('eveonline')
            ->scopes(self::scopes)
            ->redirect();
    }

    public function callback(Socialite $social){

        $eve_data = $social->driver('eveonline')
            ->scopes(self::scopes)
            ->user();

       // Continue with User authentication as you see fit.
    }
}
```

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity54

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

1549d ago

### Community

Maintainers

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

---

Top Contributors

[![SimplyUnnamed](https://avatars.githubusercontent.com/u/2074278?v=4)](https://github.com/SimplyUnnamed "SimplyUnnamed (3 commits)")

### Embed Badge

![Health badge](/badges/laravelevetools-eve-socialite-provider/health.svg)

```
[![Health](https://phpackages.com/badges/laravelevetools-eve-socialite-provider/health.svg)](https://phpackages.com/packages/laravelevetools-eve-socialite-provider)
```

###  Alternatives

[lab404/laravel-impersonate

Laravel Impersonate is a plugin that allows to you to authenticate as your users.

2.3k16.4M48](/packages/lab404-laravel-impersonate)[santigarcor/laratrust

This package provides a flexible way to add Role-based Permissions to Laravel

2.3k5.4M43](/packages/santigarcor-laratrust)[overtrue/laravel-follow

User follow unfollow system for Laravel.

1.2k404.7k5](/packages/overtrue-laravel-follow)[socialiteproviders/instagram

Instagram OAuth2 Provider for Laravel Socialite

421.9M5](/packages/socialiteproviders-instagram)

PHPackages © 2026

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