invisnik/laravel-steam-inventory

View on GitHub
README.md

Summary

Maintainability
Test Coverage
# Steam Inventory parser for Laravel 5
[![Code Climate](https://codeclimate.com/github/invisnik/laravel-steam-inventory/badges/gpa.svg)](https://codeclimate.com/github/invisnik/laravel-steam-inventory)
[![Latest Stable Version](https://poser.pugx.org/invisnik/laravel-steam-inventory/v/stable?format=flat)](https://packagist.org/packages/invisnik/laravel-steam-inventory)
[![Total Downloads](https://poser.pugx.org/invisnik/laravel-steam-inventory/downloads?format=flat)](https://packagist.org/packages/invisnik/laravel-steam-inventory)
[![License](https://poser.pugx.org/invisnik/laravel-steam-inventory/license?format=flat)](https://packagist.org/packages/invisnik/laravel-steam-inventory)
## Dependencies
 - Laravel cache driver, which supports tags. For example `Redis` or `Memcached`
 
## Installation Via Composer
Add this to your `composer.json` file, in the require object:

```javascript
"invisnik/laravel-steam-inventory": "1.*"
```

After that, run `composer install` to install the package.

#### Laravel 5.4 and below

Add the service provider to `app/config/app.php`, within the `providers` array.

```php
'providers' => [
    // ...
    Invisnik\LaravelSteamInventory\ServiceProvider::class,
]
```
The package is automatically added if you are in Laravel 5.5.

#### Config Files

Lastly, publish the config file and configure it.

```
php artisan vendor:publish
```

## Usage example

```php
namespace App\Http\Controllers;

use Invisnik\LaravelSteamInventory\SteamInventory;

class YourController extends Controller
{
    /**
     * @var SteamInventory
     */
    private $steamInventory;

    public function __construct(SteamInventory $steamInventory)
    {
        $this->steamInventory = $steamInventory;
    }

    public function index()
    {
        $user = App\User::find(1);
    // $user->steamid = '76561198233097000'
        $items = $this->steamInventory
        ->loadInventory($user->steamid, 730)->getInventoryWithDescriptions();
        
    return view('your.view.file', compact('items'));
    }
}
```