PHPackages                             revolution/socialite-chatwork - 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. revolution/socialite-chatwork

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

revolution/socialite-chatwork
=============================

Socialite for ChatWork

1.2.2(6y ago)1415MITPHPPHP ^7.2||^8.0

Since Nov 18Pushed 6y ago1 watchersCompare

[ Source](https://github.com/kawax/socialite-chatwork)[ Packagist](https://packagist.org/packages/revolution/socialite-chatwork)[ RSS](/packages/revolution-socialite-chatwork/feed)WikiDiscussions master Synced 3d ago

READMEChangelogDependencies (4)Versions (10)Used By (0)

Socialite for ChatWork
======================

[](#socialite-for-chatwork)

Requirements
------------

[](#requirements)

- PHP &gt;= 7.2

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

[](#installation)

```
composer require revolution/socialite-chatwork

```

### config/services.php

[](#configservicesphp)

```
    'chatwork' => [
        'client_id'     => env('CHATWORK_CLIENT_ID'),
        'client_secret' => env('CHATWORK_CLIENT_SECRET'),
        'redirect'      => env('CHATWORK_REDIRECT'),
    ],

```

### .env

[](#env)

```
CHATWORK_CLIENT_ID=
CHATWORK_CLIENT_SECRET=
CHATWORK_REDIRECT=

```

Usage
-----

[](#usage)

routes/web.php

```
Route::get('login', 'ChatWorkController@login');
Route::get('callback', 'ChatWorkController@callback');

```

ChatWorkController

```
namespace App\Http\Controllers;

use Illuminate\Http\Request;
use Socialite;

class ChatWorkController extends Controller
{
    public function login()
    {
        return Socialite::driver('chatwork')->redirect();
    }

    public function callback()
    {
        $user = Socialite::driver('chatwork')->user();
        dd($user);
    }
}
```

Scopes
------

[](#scopes)

```
    public function login()
    {
        return Socialite::driver('chatwork')
                        ->setScopes(['users.all:read'])
                        ->redirect();
    }
```

Demo
----

[](#demo)

LICENCE
-------

[](#licence)

MIT Copyright kawax

###  Health Score

32

—

LowBetter than 72% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity14

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity74

Established project with proven stability

 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

Every ~104 days

Recently: every ~166 days

Total

9

Last Release

2262d ago

Major Versions

0.0.2 → 1.0.02017-11-18

PHP version history (5 changes)0.0.1PHP &gt;=5.6.4

1.0.0PHP &gt;=7.0.0

1.1.0PHP &gt;=7.1.3

1.2.0PHP ^7.2

1.2.2PHP ^7.2||^8.0

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/77618633?v=4)[Revolution](/maintainers/revolution)[@Revolution](https://github.com/Revolution)

---

Top Contributors

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

---

Tags

laravelsocialitechatwork

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/revolution-socialite-chatwork/health.svg)

```
[![Health](https://phpackages.com/badges/revolution-socialite-chatwork/health.svg)](https://phpackages.com/packages/revolution-socialite-chatwork)
```

###  Alternatives

[socialiteproviders/manager

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

42442.0M544](/packages/socialiteproviders-manager)[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)[chrisreedio/socialment

Provides Socialite functionality for Filament.

10884.8k1](/packages/chrisreedio-socialment)[schedula/laravel-passport-socialite

The missing laravel passport feature for social authentication

4922.6k](/packages/schedula-laravel-passport-socialite)[revolution/socialite-mastodon

Socialite for Mastodon

13203.2k1](/packages/revolution-socialite-mastodon)[truckersmp/steam-socialite

Laravel Socialite provider for Steam OpenID.

1516.7k](/packages/truckersmp-steam-socialite)

PHPackages © 2026

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