Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jerome1337/fmsteamcondenserbundle

Add some Steam[http://steampowered.com] to your Symfony 2 project!
https://github.com/jerome1337/fmsteamcondenserbundle

Last synced: 15 days ago
JSON representation

Add some Steam[http://steampowered.com] to your Symfony 2 project!

Awesome Lists containing this project

README

        

FMSteamcondenserBundle
======================

Add some Steam[http://steampowered.com] to your Symfony 2 project!

**This repo is a fixed FMSteamCondenserBundle from original author [Helios-ag](https://github.com/helios-ag)**

**Original repo right here : https://github.com/helios-ag/FMSteamcondenserBundle**

This bundle allows you to query game servers, getting information about players/Steam users, getting server information,
such as current player list and etc.
Bundle depends on [Steam Condenser](https://github.com/koraktor/steam-condenser) library by [Sebastian Staudt](https://github.com/koraktor)

# Installation

To install this bundle, you'll need both the [Steam Condenser](https://github.com/koraktor/steam-condenser)
and this bundle.

## Step 1: Installation

Using Composer, just add the following configuration to your `composer.json`:

```json
{
"require": {
"jerome1337/fm-steamcondenser-bundle": "dev-master"
}
}
```

Now tell composer to download the bundle by running the command:

``` bash
$ php composer.phar update jerome1337/fm-steamcondenser-bundle
```

## Step 2: Enable the bundle

Finally, enable the bundle in the kernel:

``` php