scolib / omnipay-alipay
Alipay gateway for Omnipay payment processing library
Requires
- ext-bcmath: *
- ext-json: *
- ext-openssl: *
- omnipay/common: ^3.0
- php-http/guzzle6-adapter: ^2.0
Requires (Dev)
- omnipay/tests: ^3.0
- squizlabs/php_codesniffer: ^3.4
- dev-master
- v3.1.2
- v3.1.1
- v3.1
- v3.0.6
- v3.0.5
- v3.0.4
- v3.0.3
- v3.0-beta.2
- v3.0-beta.1
- v3.0-alpha.2
- v3.0-alpha.1
- v2.3.6
- v2.3.5
- v2.3.4
- v2.3.3
- v2.3.2
- v2.3.1
- v2.3.0
- v2.1.0
- v2.0.10
- v2.0.9
- v2.0.8
- v2.0.7
- v2.0.5
- v2.0.4
- v2.0.3
- v2.0.2
- v2.0.1
- v2.0.0
- v1.4.13
- v1.4.12
- v1.4.11
- v1.4.10
- v1.4.9
- v1.4.8
- v1.4.7
- v1.4.6
- v1.4.5
- v1.4.0
- v1.3.0
- v1.2.0
- v1.1.0
- v1.0.4
- v1.0.3
- v1.0.2
- v1.0.1
- v1.0.0
- v0.9.3
- v0.9.2
- v0.9.1
- v0.9.0
- v0.8.4
- v0.8.3
- v0.8.2
- v0.8.1
- v0.8.0
- v0.7.1
- v0.7.0
- v0.6.1
- v0.6.0
- dev-legacy
This package is auto-updated.
Last update: 2024-10-11 06:49:06 UTC
README
Alipay driver for the Omnipay PHP payment processing library
Omnipay is a framework agnostic, multi-gateway payment processing library for PHP. This package implements Alipay support for Omnipay.
Cross-border Alipay payment please use
lokielse/omnipay-global-alipay
Legacy Version please use
"lokielse/omnipay-alipay": "dev-legacy"
Installation
composer require lokielse/omnipay-alipay
Basic Usage
The following gateways are provided by this package:
Usage
Purchase (购买)
/** * @var AopAppGateway $gateway */ $gateway = Omnipay::create('Alipay_AopPage'); $gateway->setSignType('RSA2'); // RSA/RSA2/MD5. Use certificate mode must set RSA2 $gateway->setAppId('the_app_id'); $gateway->setPrivateKey('the_app_private_key'); $gateway->setAlipayPublicKey('the_alipay_public_key'); // Need not set this when used certificate mode $gateway->setReturnUrl('https://www.example.com/return'); $gateway->setNotifyUrl('https://www.example.com/notify'); // Must set cert path if you used certificate mode //$gateway->setAlipayRootCert('the_alipay_root_cert'); // alipayRootCert.crt //$gateway->setAlipayPublicCert('the_alipay_public_cert'); // alipayCertPublicKey_RSA2.crt //$gateway->setAppCert('the_app_public_cert'); // appCertPublicKey.crt //$gateway->setCheckAlipayPublicCert(true); /** * @var AopTradePagePayResponse $response */ $response = $gateway->purchase()->setBizContent([ 'subject' => 'test', 'out_trade_no' => date('YmdHis') . mt_rand(1000, 9999), 'total_amount' => '0.01', 'product_code' => 'FAST_INSTANT_TRADE_PAY', ])->send(); $url = $response->getRedirectUrl();
For general usage instructions, please see the
Related
Support
If you are having general issues with Omnipay, we suggest posting on Stack Overflow. Be sure to add the omnipay tag so it can be easily found.
If you want to keep up to date with release anouncements, discuss ideas for the project, or ask more detailed questions, there is also a mailing list which you can subscribe to.
If you believe you have found a bug, please report it using the GitHub issue tracker, or better yet, fork the library and submit a pull request.