dev-master
9999999-devLaravel Package for Official PUBG API
MIT
The Requires
- php ^5.6 || ^7.0
- illuminate/support 5.3.x|5.6.x
by Saad Nasir Siddique
laravel api pubg pubgapi laravelpackage
Laravel Package for Official PUBG API
A Laravel Package for PUBG Official API, (*1)
Require this package with composer., (*3)
composer require saadj55/laravel-pubg
Package discovery is enabled so need for additional configuration., (*4)
After installation, open config/app.php
and add the following line to providers
key
Saadj55\LaravelPubg\Providers\LaravelPubgServiceProvider::class,
After that, run the following command to publish configuration file., (*5)
php artisan vendor:publish
Set your access token in the .env
file as PUBG_ACCESS_TOKEN=<access_token>
, (*6)
Set the region you want to query as PUBG_REGION=<region>
in the .env
file., (*7)
Set the platform you want to query as PUBG_PLATFORM=<platform>
in the .env
file, (*8)
You can simply use the API by adding use Saadj55\LaravelPubg\Pubg;
wherever you want to call the API
and making a new instance of the Pubg
class as $pubg = new Pubg;
, (*9)
$pubg = new Pubg; $player = $pubg->getPlayerById($player_id);
$pubg = new Pubg; $player_ids = [1,2,3,4,5]; $player = $pubg->getPlayersByIds($player_ids);
$pubg = new Pubg; $player_names = ['foo','bar']; $player = $pubg->getPlayersByName($player_names);
$pubg = new Pubg; $match = $pubg->getMatchById($match_id);
By default, region name is set from the app/config/pubg.php
.
If you need to set the region on the fly, You can call $pubg->setRegion($region_name)
before calling any
of the above methods.
You can also call $pubg->setPlatform($platform)
, (*10)
Laravel Package for Official PUBG API
MIT
laravel api pubg pubgapi laravelpackage