tankonyako/php-steam-totp

PHP library to deal with Steam's proprietary TOTP algorithm

Installs: 6

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 0

Forks: 7

pkg:composer/tankonyako/php-steam-totp

dev-master 2023-02-02 13:11 UTC

This package is auto-updated.

Last update: 2025-09-29 03:13:58 UTC


README

This forks removes deprecated warnings on PHP 8

composer require tankonyako/php-steam-totp

https://packagist.org/packages/tankonyako/php-steam-totp

PHP library for TOTP for use with Steam. It's documented with phpdoc; just read it to learn how to use it.

Only requirement is cURL.

Example

<?php
require_once 'vendor/autoload.php'; // if you're using composer

use SteamTotp\SteamTotp;

echo "Login code: " . SteamTotp::getAuthCode("cnOgv/KdpLoP6Nbh0GMkXkPXALQ=");