Skip to content

Commit

Permalink
Lots of updates
Browse files Browse the repository at this point in the history
  • Loading branch information
braseidon committed May 19, 2015
1 parent 866c594 commit 8ba0c34
Show file tree
Hide file tree
Showing 11 changed files with 483 additions and 405 deletions.
10 changes: 8 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,20 @@
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=5.3.0",
"laravel/framework": "5.0.*"
},
"autoload": {
"psr-4": {
"sgtaziz\\SteamAuth\\": "src/sgtaziz/SteamAuth"
"sgtaziz\\SteamAuth\\": "src/"
}
}
"extra": {
"component": "package",
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"minimum-stability": "dev"
}
348 changes: 175 additions & 173 deletions composer.lock

Large diffs are not rendered by default.

17 changes: 17 additions & 0 deletions config/sgtaziz.steamauth.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?php

return [

/*
|--------------------------------------------------------------------------
| Steam Developer's API Key
|--------------------------------------------------------------------------
|
| Enter your steam API key here. Can be found at:
| https://steamcommunity.com/dev/apikey
|
*/

'SteamAPIKey' => '',

];
17 changes: 17 additions & 0 deletions src/Facades/SteamAuth.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?php namespace sgtaziz\SteamAuth\Facades;

use Illuminate\Support\Facades\Facade;

class SteamAuth extends Facade
{

/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'sgtaziz.steamauth';
}
}
Loading

0 comments on commit 8ba0c34

Please sign in to comment.