PHPackages                             jrtashjian/socialiteproviders-eveonline - 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. jrtashjian/socialiteproviders-eveonline

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

jrtashjian/socialiteproviders-eveonline
=======================================

EVE Online OAuth2 Provider for Laravel Socialite

v1.0.1(8y ago)44741[1 issues](https://github.com/jrtashjian/socialiteprovider-eveonline/issues)MITPHPPHP &gt;=5.5.9

Since Nov 26Pushed 8y ago2 watchersCompare

[ Source](https://github.com/jrtashjian/socialiteprovider-eveonline)[ Packagist](https://packagist.org/packages/jrtashjian/socialiteproviders-eveonline)[ RSS](/packages/jrtashjian-socialiteproviders-eveonline/feed)WikiDiscussions master Synced 2mo ago

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

EVE Online OAuth2 Provider for Laravel Socialite
================================================

[](#eve-online-oauth2-provider-for-laravel-socialite)

A Laravel Socialite provider for EVE Online SSO.

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

[](#installation)

### 1. Composer

[](#1-composer)

```
// This assumes that you have composer installed globally
composer require jrtashjian/socialiteproviders-eveonline

```

### 2. Service Provider

[](#2-service-provider)

- Remove `Laravel\Socialite\SocialiteServiceProvider` from your `providers[]` array in `config\app.php` if you have added it already.
- Add `\SocialiteProviders\Manager\ServiceProvider::class` to your `providers[]` array in `config\app.php`.

For Example:

```
'providers' => [
	// a whole bunch of providers
	// remove 'Laravel\Socialite\SocialiteServiceProvider',
	\SocialiteProviders\Manager\ServiceProvider::class, // add
];

```

### 3. Add the Event and Listeners

[](#3-add-the-event-and-listeners)

- Add `SocialiteProviders\Manager\SocialiteWasCalled` event to your `listen[]` array in `/Providers/EventServiceProvider`.
- Add your listeners (i.e. the ones from the providers) to the `SocialiteProviders\Manager\SocialiteWasCalled[]` that you just created.
- The listener that you add for this provider is `'SocialiteProviders\EveOnline\EveOnlineExtendSocialite@handle',`.
- Note: You do not need to add anything for the built-in socialite providers unless you override them with your own providers.

For example:

```
/**
 * The event handler mappings for the application.
 *
 * @var array
 */
protected $listen = [
	\SocialiteProviders\Manager\SocialiteWasCalled::class => [
		// add your listeners (aka providers) here
		'SocialiteProviders\EveOnline\EveOnlineExtendSocialite@handle',
	],
];

```

### 4. Environment Variables

[](#4-environment-variables)

If you add environment values to your .env as exactly shown below, **you do not need to add an entry to the services array.**

#### Append provider values to your `.env` file

[](#append-provider-values-to-your-env-file)

```
// other values above
EVEONLINE_KEY=yourkeyfortheservice
EVEONLINE_SECRET=yoursecretfortheservice
EVEONLINE_REDIRECT_URI=https://example.com/login

```

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

[](#add-to-configservicesphp)

**You do not need to add this if you add the values to the .env exactly as shown above.** The values below are provided as a convenience in the case that a developer is not able to use the .env method

```
'eveonline' => [
	'client_id' => env('EVEONLINE_KEY'),
	'client_secret' => env('EVEONLINE_SECRET'),
	'redirect' => env('EVEONLINE_REDIRECT_URI'),
],

```

Usage
-----

[](#usage)

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

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

```

Issues
------

[](#issues)

If you have any issues using this package, [create a new Issue](https://github.com/jrtashjian/socialiteprovider-eveonline/issues/new).

License
-------

[](#license)

This code is licensed under the MIT License.

###  Health Score

29

—

LowBetter than 60% of packages

Maintenance15

Infrequent updates — may be unmaintained

Popularity18

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity59

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 80% 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 ~415 days

Total

2

Last Release

3039d ago

### Community

Maintainers

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

---

Top Contributors

[![jrtashjian](https://avatars.githubusercontent.com/u/375788?v=4)](https://github.com/jrtashjian "jrtashjian (4 commits)")[![rohimma](https://avatars.githubusercontent.com/u/2255417?v=4)](https://github.com/rohimma "rohimma (1 commits)")

### Embed Badge

![Health badge](/badges/jrtashjian-socialiteproviders-eveonline/health.svg)

```
[![Health](https://phpackages.com/badges/jrtashjian-socialiteproviders-eveonline/health.svg)](https://phpackages.com/packages/jrtashjian-socialiteproviders-eveonline)
```

###  Alternatives

[socialiteproviders/microsoft

Microsoft OAuth2 Provider for Laravel Socialite

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

Apple OAuth2 Provider for Laravel Socialite

618.4M8](/packages/socialiteproviders-apple)[socialiteproviders/instagram

Instagram OAuth2 Provider for Laravel Socialite

421.9M5](/packages/socialiteproviders-instagram)[socialiteproviders/microsoft-azure

Microsoft Azure OAuth2 Provider for Laravel Socialite

556.0M19](/packages/socialiteproviders-microsoft-azure)[socialiteproviders/laravelpassport

LaravelPassport OAuth2 Provider for Laravel Socialite

621.3M7](/packages/socialiteproviders-laravelpassport)[socialiteproviders/discord

Discord OAuth2 Provider for Laravel Socialite

422.0M17](/packages/socialiteproviders-discord)

PHPackages © 2026

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