PHPackages                             noilty/socialiteproviders-shikimori - 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. noilty/socialiteproviders-shikimori

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

noilty/socialiteproviders-shikimori
===================================

Shikimori OAuth2 Provider for Laravel Socialite

02PHP

Since Sep 13Pushed 8mo ago1 watchersCompare

[ Source](https://github.com/Noilty/socialiteproviders-shikimori)[ Packagist](https://packagist.org/packages/noilty/socialiteproviders-shikimori)[ RSS](/packages/noilty-socialiteproviders-shikimori/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Shikimori
=========

[](#shikimori)

```
  composer require noilty/socialiteproviders-shikimori
```

Laravel Socialite
-----------------

[](#laravel-socialite)

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)

```
'shikimori' => [
    'client_id' => env('SHIKIMORI_CLIENT_ID'),
    'client_secret' => env('SHIKIMORI_CLIENT_SECRET'),
    'redirect' => env('SHIKIMORI_REDIRECT_URI')
],
```

### Add provider event listener

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

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('shikimori', \Noilty\SocialiteProviders\Shikimori\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
        \Noilty\SocialiteProviders\Shikimori\ShikimoriExtendSocialite::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('shikimori')->redirect();
```

### Returned User fields

[](#returned-user-fields)

- `id`
- `nickname`
- `locale`

###  Health Score

16

—

LowBetter than 5% of packages

Maintenance43

Moderate activity, may be stable

Popularity2

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity13

Early-stage or recently created project

 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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/8c6a018bba0e4eda2b76f346402f1ef32ab3c82b6eede8f1fc3afa633a5ed517?d=identicon)[Noilty](/maintainers/Noilty)

---

Top Contributors

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

### Embed Badge

![Health badge](/badges/noilty-socialiteproviders-shikimori/health.svg)

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

###  Alternatives

[namshi/jose

JSON Object Signing and Encryption library for PHP.

1.8k99.6M101](/packages/namshi-jose)[league/oauth1-client

OAuth 1.0 Client Library

99698.8M106](/packages/league-oauth1-client)[bezhansalleh/filament-shield

Filament support for `spatie/laravel-permission`.

2.8k2.9M88](/packages/bezhansalleh-filament-shield)[gesdinet/jwt-refresh-token-bundle

Implements a refresh token system over Json Web Tokens in Symfony

70516.4M35](/packages/gesdinet-jwt-refresh-token-bundle)[league/oauth2-google

Google OAuth 2.0 Client Provider for The PHP League OAuth2-Client

41721.2M118](/packages/league-oauth2-google)[illuminate/auth

The Illuminate Auth package.

9327.3M1.0k](/packages/illuminate-auth)

PHPackages © 2026

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