├── .gitignore ├── ISSUE_TEMPLATE.md ├── Licence.txt ├── README.md ├── composer.json ├── demo.php ├── example.php └── steamauth ├── SteamConfig.php ├── openid.php ├── steamauth.php └── userInfo.php /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmItH197/SteamAuthentication/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /Licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmItH197/SteamAuthentication/HEAD/Licence.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmItH197/SteamAuthentication/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmItH197/SteamAuthentication/HEAD/composer.json -------------------------------------------------------------------------------- /demo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmItH197/SteamAuthentication/HEAD/demo.php -------------------------------------------------------------------------------- /example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmItH197/SteamAuthentication/HEAD/example.php -------------------------------------------------------------------------------- /steamauth/SteamConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmItH197/SteamAuthentication/HEAD/steamauth/SteamConfig.php -------------------------------------------------------------------------------- /steamauth/openid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmItH197/SteamAuthentication/HEAD/steamauth/openid.php -------------------------------------------------------------------------------- /steamauth/steamauth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmItH197/SteamAuthentication/HEAD/steamauth/steamauth.php -------------------------------------------------------------------------------- /steamauth/userInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmItH197/SteamAuthentication/HEAD/steamauth/userInfo.php --------------------------------------------------------------------------------