hostinger / hpayments-client-php
This package's canonical repository appears to be gone and the package has been frozen as a result.
Installs: 5 504
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 17
Forks: 2
Open Issues: 2
Requires
- php: >=7.2
- guzzlehttp/guzzle: ^7.2
Requires (Dev)
- phpunit/phpunit: ^9
- dev-master
- v2.1.2
- v2.1.1
- v2.1.0
- 2.0.x-dev
- v2.0.9
- v2.0.8
- v2.0.7
- v2.0.6
- v2.0.5
- v2.0.4
- v2.0.3
- v2.0.2
- v2.0.1
- v2.0.0
- v1.3.3
- v1.3.2
- v1.3.1
- v1.3.0
- v1.2.9
- v1.2.8
- v1.2.7
- v1.2.6
- v1.2.5
- v1.2.4
- v1.2.3
- v1.2.2
- v1.2.1
- v1.1.1
- v1.1.0
- v1.0.9
- v1.0.8
- v1.0.7
- v1.0.6
- v1.0.5
- v1.0.4
- v1.0.3
- v1.0.2
- v1.0.1
- v1.0.0
- dev-bugfix/add_delete_all_customer_methods_2.1.2
- dev-bugfix/add_delete_all_customer_methods
- dev-feature/recurrent-manual-charge-in-backend-2-1-1
- dev-feature/recurrent-manual-charge-in-backend
- dev-one-click-pay-fix
- dev-feature/render-information-endpoint-v2-05
- dev-feature/render-information-endpoint
- dev-bugfix/add-applepay-direct-v3-validate-session
- dev-bugfix/add-applepay-direct-v3-validate-session-v2.04
This package is not auto-updated.
Last update: 2022-04-19 16:35:16 UTC
README
This client is used to create payments for hPayments SaaS system.
Table of content
Installation
composer require hostinger/hpayments-client-php
How To
Minimal Details Usage
<?php use Hpayments\APIContext; use Hpayments\MerchantAccounts; use Hpayments\Item; use Hpayments\Items; use Hpayments\Payer; use Hpayments\Payment; use Hpayments\RedirectUrls; use Hpayments\Transaction; $payer = new Payer([ 'email' => 'sales@hostinger.com', 'custom_account_id' => 'h_123' ]); $transaction = new Transaction([ 'amount' => '9999', 'currency' => 'EUR', 'description' => 'Payment for hosting.', 'invoice_number' => '123', 'three_d_secure' => '1' ]); $item = new Item([ 'name' => 'Premium Hosting', 'price_now' => '1111', ]); $itemBag = new Items(); $itemBag->addNewItem($item); $redirectUrls = new RedirectUrls(['cancel' => 'https://www.hostinger.com/cancel', 'return' => 'https://www.hostinger.com/success']); $paymentsApi = new APIContext('your_api_token', 'http://localhost'); $response = $paymentsApi->getMerchantAccounts(); $merchantAccounts = new MerchantAccounts($response['data']['merchant_account_ids']); $payment = new Payment(); $payment->setPayerDetails($payer); $payment->setTransactionDetails($transaction); $payment->setItems($itemBag); $payment->setRedirectUrls($redirectUrls); $payment->setMerchantAccounts($merchantAccounts); $response = $paymentsApi->createPayment($payment); if (!$response['success']){ echo $response['error']['message']; } else { echo $response['data']['redirect_link']; }
Full Details Usage
<?php use Hpayments\APIContext; use Hpayments\MerchantAccounts; use Hpayments\Item; use Hpayments\Items; use Hpayments\Payer; use Hpayments\Payment; use Hpayments\RedirectUrls; use Hpayments\Transaction; $payer = new Payer([ 'email' => 'sales@hostinger.com', 'custom_account_id' => 'h_123', 'first_name' => 'John', 'last_name' => 'Doe', 'country_code' => 'LT', 'zip' => '12345', 'city' => 'Vilnius', 'address' => 'Mokyklos g.18' ]); $transaction = new Transaction([ 'amount' => '9999', 'currency' => 'EUR', 'description' => 'Payment for hosting.', 'invoice_number' => '123', 'three_d_secure' => '1', 'legal_document' => '1231231230', 'vat_percent' => '15', 'vat_amount' => '1000', 'meta_data' => [ 'reseller_id' => '5', 'reseller_domain' => 'hostinger.com' ] ]); $item = new Item([ 'name' => 'Premium Hosting', 'price_now' => '1111', 'price_before' => '2222', 'period' => 'Annually (Pay Every 12 Months)', ]); $item2 = new Item([ 'name' => 'Premium Hosting', 'price_now' => '1111', 'price_before' => '2222', 'period' => 'Annually (Pay Every 12 Months)', ]); $itemBag = new Items(); $itemBag->addNewItem($item); $itemBag->addNewItem($item2); $redirectUrls = new RedirectUrls(['cancel' => 'https://www.hostinger.com/cancel', 'return' => 'https://www.hostinger.com/success']); $paymentsApi = new APIContext('your_api_token', 'http://localhost'); $response = $paymentsApi->getMerchantAccounts(); $merchantAccounts = new MerchantAccounts($response['data']['merchant_account_ids']); $payment = new Payment(); $payment->setPayerDetails($payer); $payment->setTransactionDetails($transaction); $payment->setItems($itemBag); $payment->setRedirectUrls($redirectUrls); $payment->setMerchantAccounts($merchantAccounts); $response = $paymentsApi->createPayment($payment); if (!$response['success']){ echo $response['error']['message']; } else { echo $response['data']['redirect_link']; }
Future payment usage
$futurePayment = new FuturePayment(); $futurePayment->setPayerDetails(new Payer([ 'email' => 'test@example.com', 'custom_account_id' => 'h_123123', 'document_required' => 1 ])); $futurePayment->setRedirectUrls(new RedirectUrls([ 'return' => 'http://hostinger.com?status=1', 'cancel' => 'http://hostinger.com?error=0' ])); $futurePayment->setMerchantAccounts([ 'processout', 'braintree_paypal', ]); return $this->client->createFuturePayment($futurePayment);
Direct payments usage
For direct payments usage, read DirectPayments.md which is located in docs/DirectPayments in this repository.
- You can find all available REST endpoints in
APIContext.php
file
Run PHPUnit Tests
composer install --dev
to install 5.7 PHPUnit.- run
./vendor/bin/phpunit --bootstrap vendor/autoload.php tests/PostBodyTest.php
- if you have local hPayments environment you can also run integration tests
./vendor/bin/phpunit --bootstrap vendor/autoload.php tests/LocalIntegrationTest.php