Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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!
- Host: GitHub
- URL: https://github.com/jerome1337/fmsteamcondenserbundle
- Owner: Jerome1337
- License: other
- Created: 2015-12-13T18:00:51.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-01-18T16:50:35.000Z (almost 9 years ago)
- Last Synced: 2024-12-25T14:09:46.858Z (15 days ago)
- Language: PHP
- Homepage:
- Size: 15.6 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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