Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.144.41.22
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
3 /
yoomoney /
yookassa-payout-sdk-php /
Delete
Unzip
Name
Size
Permission
Date
Action
docs
[ DIR ]
drwxrwxr-x
2023-01-17 09:45
lib
[ DIR ]
drwxrwxr-x
2023-01-17 09:45
tests
[ DIR ]
drwxrwxr-x
2023-01-17 09:45
.gitignore
69
B
-rw-rw-r--
2023-01-17 09:45
.travis.yml
454
B
-rw-rw-r--
2023-01-17 09:45
CHANGELOG.md
1.47
KB
-rw-rw-r--
2023-01-17 09:45
LICENSE.md
1.06
KB
-rw-rw-r--
2023-01-17 09:45
README.en.md
3.91
KB
-rw-rw-r--
2023-01-17 09:45
README.md
5.11
KB
-rw-rw-r--
2023-01-17 09:45
composer.json
1.22
KB
-rw-rw-r--
2023-01-17 09:45
phpdoc.xml
1.44
KB
-rw-rw-r--
2023-01-17 09:45
phpunit.xml.dist
842
B
-rw-rw-r--
2023-01-17 09:45
Save
Rename
# YooMoney Payout API PHP Client Library [](https://travis-ci.org/yoomoney/yookassa-payout-sdk-php) [](https://packagist.org/packages/yoomoney/yookassa-payout-sdk-php) [](https://packagist.org/packages/yoomoney/yookassa-payout-sdk-php) [](https://packagist.org/packages/yoomoney/yookassa-payout-sdk-php) [](https://packagist.org/packages/yoomoney/yookassa-payout-sdk-php) [Russian](README.md) | English Client to work on the [Protocol for mass payouts](https://yookassa.ru/docs/payouts/api/using-api/basics?lang=en) ## Opportunities You can with this SDK: 1. [Generate a certificate](https://yookassa.ru/docs/payment-solution/supplementary/security?lang=en) for interaction with YooMoney. 2. [Transfer money](https://yookassa.ru/docs/payouts/api/make-deposition/basics?lang=en) to individuals for wallets in YooMoney, mobile phone numbers, Bank cards and accounts (makeDeposition). 3. [To test the possibility of transfer of remittances](https://yookassa.ru/docs/payouts/api/make-deposition/basics?lang=en#test-deposition) to wallets in YooMoney (testDeposition). 4. [Keep track of the balance of payments](https://yookassa.ru/docs/payouts/api/balance?lang=en) (balance). 5. [Receive notifications](https://yookassa.ru/docs/payouts/api/error-deposition-notification?lang=en) the unsuccessful status of transfers to a Bank account, card, or mobile phone (errorDepositionNotification). ## Requirements PHP 5.6.0 (or later version) with the libcurl and libxml libraries ## Installation ### Under console using Composer 1. Install Composer, a package manager. 2. In the console, run the following command: ```bash composer require yoomoney/yookassa-payout-sdk-php ``` ### Do the following for the composer.json file of your project: 1. Add a string `"yoomoney/yookassa-payout-sdk-php": "^2.0"` to the list of dependencies of your project in the composer.json file ``` ... "require": { "php": ">=5.6.0", "yoomoney/yookassa-payout-sdk-php": "^2.0" ... ``` 2. Refresh the project's dependencies. In the console, navigate to the catalog with composer.json and run the following command: ```bash composer update ``` 3. Adjust your project's code to activate automated uploading of files for our product: ```php require __DIR__ . '/vendor/autoload.php'; ``` ### Manually 1. Download [the YooMoney API PHP Client Library archive](https://git.yoomoney.ru/rest/api/latest/projects/SDK/repos/yookassa-payout-sdk-php/archive?format=zip), extract it and copy the lib catalog to the required place of your project. 2. Adjust your project's code to activate automated uploading of files for our product: ```php require __DIR__ . '/lib/autoload.php'; ``` ## Examples of using the SDK Payout API YooMoney #### [Settings SDK Payout API YooMoney](docs/examples/01-configuration.md) * [Generate a certificate](docs/examples/01-configuration.md#Получение-сертификата-для-аутентификации-запросов) * [Balance request](docs/examples/01-configuration.md#Запрос-баланса) #### [Funds deposit](docs/examples/02-depositions.md) * [Request to check transfer possibility](docs/examples/02-depositions.md#Проверка-возможности-зачислений) * [Transfer to bank card](docs/examples/02-depositions.md#Зачисление-на-банковскую-карту) * [Transfer to bank account](docs/examples/02-depositions.md#Зачисление-переводов-на-банковский-счет) #### [Notification of unsuccessful transfer](docs/examples/03-notifications.md)