PHPackages                             jumpgategaming/wargaming - 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. jumpgategaming/wargaming

ActiveLibrary

jumpgategaming/wargaming
========================

0.1.1(7y ago)02781MITPHP

Since Jun 24Pushed 7y ago2 watchersCompare

[ Source](https://github.com/JumpGateGaming/Wargaming)[ Packagist](https://packagist.org/packages/jumpgategaming/wargaming)[ RSS](/packages/jumpgategaming-wargaming/feed)WikiDiscussions master Synced today

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

- [Installation](#installation)
- [Set up](#set-up)
    - [API Details](#api-details)
    - [Service Provider](#service-provider)
- [Authentication](#authentication)
- [Available Methods](#available-methods)
    - [World of Tanks](#world-of-tanks)
    - [World of Warships](#world-of-warships)
    - [World of Warplanes](#world-of-warplanes)

Installation
============

[](#installation)

`composer require jummpgategaming/wargaming`

Set up
======

[](#set-up)

API details
-----------

[](#api-details)

Update your `config/services.php` to include `wargaming`.

```
'wargaming' => [
    'client_id'     => null,
    'client_secret' => env('WARGAMING_API_KEY'),
    'redirect'      => env('WARGAMING_REDIRECT_URI'),
],
```

Service provider
----------------

[](#service-provider)

You should add the provider to your `providers[]` array in `config/app.php`.

```
'providers' => [
    ...
    JumpGateGaming\Wargaming\Providers\WargamingServiceProvider::class,
    ...
],
```

Obviously you will need to add these keys to your `.env` file. You can register an application at [their api dashboard](https://developers.wargaming.net/applications/).

Authentication
==============

[](#authentication)

This package comes with support for authorization built in using Laravel Socialite Providers. You will need to do some extra set up if you want to use it.

1. Remove `Laravel\Socialite\SocialiteServiceProvider` from your `providers[]` array in `config\app.php` if you have added it already.
2. Add `\SocialiteProviders\Manager\ServiceProvider::class` to your `providers[]` array in `config\app.php`.
3. Add `SocialiteProviders\Manager\SocialiteWasCalled` event to your `listen[]` array in `app/Providers/EventServiceProvider`.
4. Add your listeners (i.e. the ones from the providers) to the `SocialiteProviders\Manager\SocialiteWasCalled[]` that you just created.
5. The listener that you add for this provider is `'JumpGateGaming\\Wargaming\\Providers\\Socialite\\WargamingExtendSocialite@handle',`.

Example:

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

Now to use it you would just call `return Socialite::with('wargaming')->redirect();`.

Available methods
=================

[](#available-methods)

To call anything at all you will need to begin with calling `app('wargaming')`. This is the entry point for everything else. From there you call to the API you want to interact with. That would be one of `tanks()`, `warships()` or `warplanes()`. Next you call the overall section you want then the method.

Here's an example call:

```
$wargaming = app('wargaming');
$tanks = $wargaming->tanks()->encyclopedia()->vehicles();
```

> The below lists represent all working methods. Anything not listed here has not been added yet.

World of Tanks
--------------

[](#world-of-tanks)

GroupMethodAPI Referenceencyclopediavehicles[List of Vehicles](https://developers.wargaming.net/reference/all/wot/encyclopedia/vehicles/) modules[List of Modules](https://developers.wargaming.net/reference/all/wot/encyclopedia/modules/)World of Warships
-----------------

[](#world-of-warships)

GroupMethodAPI Referenceencyclopediaships[List of Ships](https://developers.wargaming.net/reference/all/wows/encyclopedia/ships)shipsstats[Player Ship Statistics](https://developers.wargaming.net/reference/all/wows/ships/stats/)World of Warplanes
------------------

[](#world-of-warplanes)

GroupMethodAPI Referenceencyclopediaplanes[List of Aircraft](https://developers.wargaming.net/reference/all/wowp/encyclopedia/planes)

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity53

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

Every ~85 days

Total

2

Last Release

2790d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/16ce579c67cdd1904b851fd5ade165a621fed3a77cce3208d7a380e8fcab552e?d=identicon)[stygiansabyss](/maintainers/stygiansabyss)

---

Top Contributors

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

### Embed Badge

![Health badge](/badges/jumpgategaming-wargaming/health.svg)

```
[![Health](https://phpackages.com/badges/jumpgategaming-wargaming/health.svg)](https://phpackages.com/packages/jumpgategaming-wargaming)
```

###  Alternatives

[neuron-core/neuron-ai

The PHP Agentic Framework.

1.8k245.3k20](/packages/neuron-core-neuron-ai)[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3731.2M42](/packages/tencentcloud-tencentcloud-sdk-php)[eveseat/web

SeAT Web Interface

2723.2k135](/packages/eveseat-web)

PHPackages © 2026

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