├── .github └── workflows │ └── zip.yml ├── LICENSE.txt ├── README.md ├── README.txt ├── includes ├── Telepay.php ├── Telepay │ ├── composer.json │ ├── composer.lock │ ├── icon.png │ └── vendor │ │ ├── autoload.php │ │ ├── composer │ │ ├── ClassLoader.php │ │ ├── InstalledVersions.php │ │ ├── LICENSE │ │ ├── autoload_classmap.php │ │ ├── autoload_namespaces.php │ │ ├── autoload_psr4.php │ │ ├── autoload_real.php │ │ ├── autoload_static.php │ │ ├── installed.json │ │ ├── installed.php │ │ └── platform_check.php │ │ └── telepaycash │ │ └── sdk-telepay-php │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── docs │ │ └── cover.jpg │ │ ├── examples │ │ ├── 1-getters.php │ │ ├── 2-createInvoice.php │ │ ├── 3-transfer.php │ │ ├── 4-withdraw.php │ │ ├── 5-cancelAndDeleteInvoice.php │ │ ├── 6-webhook.php │ │ └── 7-assets │ │ ├── phpunit.xml.dist │ │ ├── src │ │ ├── TelePayAssetInput.php │ │ ├── TelePayBaseInput.php │ │ ├── TelePayClient.php │ │ ├── TelePayEnvironment.php │ │ ├── TelePayEvents.php │ │ ├── TelePayException.php │ │ ├── TelePayInvoiceInput.php │ │ ├── TelePayTransferInput.php │ │ ├── TelePayWebhookInput.php │ │ ├── TelePayWithdrawInput.php │ │ └── TelePayWithdrawMinimumInput.php │ │ └── tests │ │ ├── Asset │ │ └── AssetsTest.php │ │ ├── Invoice │ │ └── InvoiceTest.php │ │ ├── Merchant │ │ └── MerchantTest.php │ │ ├── TestInit.php │ │ ├── Transfer │ │ └── TransferTest.php │ │ ├── Wallet │ │ └── WalletTest.php │ │ ├── Webhook │ │ └── WebhookTest.php │ │ └── Withdraw │ │ └── WithdrawTest.php └── TelepayShortcode.php ├── index.php ├── languages └── ton-gateway.pot ├── plugin.php └── public └── index.php /.github/workflows/zip.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiddqd/ton-gateway/HEAD/.github/workflows/zip.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiddqd/ton-gateway/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiddqd/ton-gateway/HEAD/README.md -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiddqd/ton-gateway/HEAD/README.txt -------------------------------------------------------------------------------- /includes/Telepay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiddqd/ton-gateway/HEAD/includes/Telepay.php -------------------------------------------------------------------------------- /includes/Telepay/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiddqd/ton-gateway/HEAD/includes/Telepay/composer.json -------------------------------------------------------------------------------- /includes/Telepay/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiddqd/ton-gateway/HEAD/includes/Telepay/composer.lock -------------------------------------------------------------------------------- /includes/Telepay/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiddqd/ton-gateway/HEAD/includes/Telepay/icon.png -------------------------------------------------------------------------------- /includes/Telepay/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiddqd/ton-gateway/HEAD/includes/Telepay/vendor/autoload.php -------------------------------------------------------------------------------- /includes/Telepay/vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiddqd/ton-gateway/HEAD/includes/Telepay/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /includes/Telepay/vendor/composer/InstalledVersions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiddqd/ton-gateway/HEAD/includes/Telepay/vendor/composer/InstalledVersions.php -------------------------------------------------------------------------------- /includes/Telepay/vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiddqd/ton-gateway/HEAD/includes/Telepay/vendor/composer/LICENSE -------------------------------------------------------------------------------- /includes/Telepay/vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiddqd/ton-gateway/HEAD/includes/Telepay/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /includes/Telepay/vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiddqd/ton-gateway/HEAD/includes/Telepay/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /includes/Telepay/vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiddqd/ton-gateway/HEAD/includes/Telepay/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /includes/Telepay/vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiddqd/ton-gateway/HEAD/includes/Telepay/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /includes/Telepay/vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiddqd/ton-gateway/HEAD/includes/Telepay/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /includes/Telepay/vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiddqd/ton-gateway/HEAD/includes/Telepay/vendor/composer/installed.json -------------------------------------------------------------------------------- /includes/Telepay/vendor/composer/installed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiddqd/ton-gateway/HEAD/includes/Telepay/vendor/composer/installed.php -------------------------------------------------------------------------------- /includes/Telepay/vendor/composer/platform_check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiddqd/ton-gateway/HEAD/includes/Telepay/vendor/composer/platform_check.php -------------------------------------------------------------------------------- /includes/Telepay/vendor/telepaycash/sdk-telepay-php/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | composer.lock 3 | vendor 4 | .phpunit.cache/test-results 5 | -------------------------------------------------------------------------------- /includes/Telepay/vendor/telepaycash/sdk-telepay-php/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiddqd/ton-gateway/HEAD/includes/Telepay/vendor/telepaycash/sdk-telepay-php/LICENSE -------------------------------------------------------------------------------- /includes/Telepay/vendor/telepaycash/sdk-telepay-php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiddqd/ton-gateway/HEAD/includes/Telepay/vendor/telepaycash/sdk-telepay-php/README.md -------------------------------------------------------------------------------- /includes/Telepay/vendor/telepaycash/sdk-telepay-php/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiddqd/ton-gateway/HEAD/includes/Telepay/vendor/telepaycash/sdk-telepay-php/composer.json -------------------------------------------------------------------------------- /includes/Telepay/vendor/telepaycash/sdk-telepay-php/docs/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiddqd/ton-gateway/HEAD/includes/Telepay/vendor/telepaycash/sdk-telepay-php/docs/cover.jpg -------------------------------------------------------------------------------- /includes/Telepay/vendor/telepaycash/sdk-telepay-php/examples/1-getters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiddqd/ton-gateway/HEAD/includes/Telepay/vendor/telepaycash/sdk-telepay-php/examples/1-getters.php -------------------------------------------------------------------------------- /includes/Telepay/vendor/telepaycash/sdk-telepay-php/examples/2-createInvoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiddqd/ton-gateway/HEAD/includes/Telepay/vendor/telepaycash/sdk-telepay-php/examples/2-createInvoice.php -------------------------------------------------------------------------------- /includes/Telepay/vendor/telepaycash/sdk-telepay-php/examples/3-transfer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiddqd/ton-gateway/HEAD/includes/Telepay/vendor/telepaycash/sdk-telepay-php/examples/3-transfer.php -------------------------------------------------------------------------------- /includes/Telepay/vendor/telepaycash/sdk-telepay-php/examples/4-withdraw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiddqd/ton-gateway/HEAD/includes/Telepay/vendor/telepaycash/sdk-telepay-php/examples/4-withdraw.php -------------------------------------------------------------------------------- /includes/Telepay/vendor/telepaycash/sdk-telepay-php/examples/5-cancelAndDeleteInvoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiddqd/ton-gateway/HEAD/includes/Telepay/vendor/telepaycash/sdk-telepay-php/examples/5-cancelAndDeleteInvoice.php -------------------------------------------------------------------------------- /includes/Telepay/vendor/telepaycash/sdk-telepay-php/examples/6-webhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiddqd/ton-gateway/HEAD/includes/Telepay/vendor/telepaycash/sdk-telepay-php/examples/6-webhook.php -------------------------------------------------------------------------------- /includes/Telepay/vendor/telepaycash/sdk-telepay-php/examples/7-assets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiddqd/ton-gateway/HEAD/includes/Telepay/vendor/telepaycash/sdk-telepay-php/examples/7-assets -------------------------------------------------------------------------------- /includes/Telepay/vendor/telepaycash/sdk-telepay-php/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiddqd/ton-gateway/HEAD/includes/Telepay/vendor/telepaycash/sdk-telepay-php/phpunit.xml.dist -------------------------------------------------------------------------------- /includes/Telepay/vendor/telepaycash/sdk-telepay-php/src/TelePayAssetInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiddqd/ton-gateway/HEAD/includes/Telepay/vendor/telepaycash/sdk-telepay-php/src/TelePayAssetInput.php -------------------------------------------------------------------------------- /includes/Telepay/vendor/telepaycash/sdk-telepay-php/src/TelePayBaseInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiddqd/ton-gateway/HEAD/includes/Telepay/vendor/telepaycash/sdk-telepay-php/src/TelePayBaseInput.php -------------------------------------------------------------------------------- /includes/Telepay/vendor/telepaycash/sdk-telepay-php/src/TelePayClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiddqd/ton-gateway/HEAD/includes/Telepay/vendor/telepaycash/sdk-telepay-php/src/TelePayClient.php -------------------------------------------------------------------------------- /includes/Telepay/vendor/telepaycash/sdk-telepay-php/src/TelePayEnvironment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiddqd/ton-gateway/HEAD/includes/Telepay/vendor/telepaycash/sdk-telepay-php/src/TelePayEnvironment.php -------------------------------------------------------------------------------- /includes/Telepay/vendor/telepaycash/sdk-telepay-php/src/TelePayEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiddqd/ton-gateway/HEAD/includes/Telepay/vendor/telepaycash/sdk-telepay-php/src/TelePayEvents.php -------------------------------------------------------------------------------- /includes/Telepay/vendor/telepaycash/sdk-telepay-php/src/TelePayException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiddqd/ton-gateway/HEAD/includes/Telepay/vendor/telepaycash/sdk-telepay-php/src/TelePayException.php -------------------------------------------------------------------------------- /includes/Telepay/vendor/telepaycash/sdk-telepay-php/src/TelePayInvoiceInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiddqd/ton-gateway/HEAD/includes/Telepay/vendor/telepaycash/sdk-telepay-php/src/TelePayInvoiceInput.php -------------------------------------------------------------------------------- /includes/Telepay/vendor/telepaycash/sdk-telepay-php/src/TelePayTransferInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiddqd/ton-gateway/HEAD/includes/Telepay/vendor/telepaycash/sdk-telepay-php/src/TelePayTransferInput.php -------------------------------------------------------------------------------- /includes/Telepay/vendor/telepaycash/sdk-telepay-php/src/TelePayWebhookInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiddqd/ton-gateway/HEAD/includes/Telepay/vendor/telepaycash/sdk-telepay-php/src/TelePayWebhookInput.php -------------------------------------------------------------------------------- /includes/Telepay/vendor/telepaycash/sdk-telepay-php/src/TelePayWithdrawInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiddqd/ton-gateway/HEAD/includes/Telepay/vendor/telepaycash/sdk-telepay-php/src/TelePayWithdrawInput.php -------------------------------------------------------------------------------- /includes/Telepay/vendor/telepaycash/sdk-telepay-php/src/TelePayWithdrawMinimumInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiddqd/ton-gateway/HEAD/includes/Telepay/vendor/telepaycash/sdk-telepay-php/src/TelePayWithdrawMinimumInput.php -------------------------------------------------------------------------------- /includes/Telepay/vendor/telepaycash/sdk-telepay-php/tests/Asset/AssetsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiddqd/ton-gateway/HEAD/includes/Telepay/vendor/telepaycash/sdk-telepay-php/tests/Asset/AssetsTest.php -------------------------------------------------------------------------------- /includes/Telepay/vendor/telepaycash/sdk-telepay-php/tests/Invoice/InvoiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiddqd/ton-gateway/HEAD/includes/Telepay/vendor/telepaycash/sdk-telepay-php/tests/Invoice/InvoiceTest.php -------------------------------------------------------------------------------- /includes/Telepay/vendor/telepaycash/sdk-telepay-php/tests/Merchant/MerchantTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiddqd/ton-gateway/HEAD/includes/Telepay/vendor/telepaycash/sdk-telepay-php/tests/Merchant/MerchantTest.php -------------------------------------------------------------------------------- /includes/Telepay/vendor/telepaycash/sdk-telepay-php/tests/TestInit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiddqd/ton-gateway/HEAD/includes/Telepay/vendor/telepaycash/sdk-telepay-php/tests/TestInit.php -------------------------------------------------------------------------------- /includes/Telepay/vendor/telepaycash/sdk-telepay-php/tests/Transfer/TransferTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiddqd/ton-gateway/HEAD/includes/Telepay/vendor/telepaycash/sdk-telepay-php/tests/Transfer/TransferTest.php -------------------------------------------------------------------------------- /includes/Telepay/vendor/telepaycash/sdk-telepay-php/tests/Wallet/WalletTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiddqd/ton-gateway/HEAD/includes/Telepay/vendor/telepaycash/sdk-telepay-php/tests/Wallet/WalletTest.php -------------------------------------------------------------------------------- /includes/Telepay/vendor/telepaycash/sdk-telepay-php/tests/Webhook/WebhookTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiddqd/ton-gateway/HEAD/includes/Telepay/vendor/telepaycash/sdk-telepay-php/tests/Webhook/WebhookTest.php -------------------------------------------------------------------------------- /includes/Telepay/vendor/telepaycash/sdk-telepay-php/tests/Withdraw/WithdrawTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiddqd/ton-gateway/HEAD/includes/Telepay/vendor/telepaycash/sdk-telepay-php/tests/Withdraw/WithdrawTest.php -------------------------------------------------------------------------------- /includes/TelepayShortcode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiddqd/ton-gateway/HEAD/includes/TelepayShortcode.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 |