You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[](https://gitter.im/syntaxerrors/Steam?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
**For Laravel 5, checkout the documentation on the [Laravel 5 branch](https://github.com/syntaxerrors/Steam).**
9
12
10
13
This package provides an easy way to get details from the steam api service. The services it can access are:
11
14
@@ -20,16 +23,16 @@ This package provides an easy way to get details from the steam api service. Th
20
23
Begin by installing this package with composer.
21
24
22
25
"require": {
23
-
"syntax/steam-api": "dev-master"
26
+
"syntax/steam-api": "1.2.*"
24
27
}
25
-
28
+
26
29
Next, update composer from the terminal.
27
30
28
31
composer update syntax/steam-api
29
32
30
33
> Alternately, you can run "composer require syntax/steam-api:dev-master" from the command line.
31
34
32
-
Once that is finished, add the service provider to `app/config/app.php`
35
+
Once that is finished, add the service provider to `config/app.php`
33
36
34
37
'Syntax\SteamApi\SteamApiServiceProvider',
35
38
@@ -175,6 +178,21 @@ When instantiating the user class, you are required to pass a steamId or steam c
175
178
Steam::user($steamId)
176
179
```
177
180
181
+
#### ResolveVanityURL
182
+
This will return details on the user from their display name.
183
+
184
+
##### Arguments
185
+
186
+
Name | Type | Description | Required | Default
187
+
-----|------|-------------|----------|---------
188
+
displayName| string | The display name to get the steam ID for. In `http://steamcommunity.com/id/gabelogannewell` it would be `gabelogannewell`. | Yes | NULL
0 commit comments