本项目原地址是lokielse/omnipay-alipay,但目前作者貌似没有在维护了。项目中想使用这个库就有了我这个二次修改的版本。
在composer.json
文件中添加:
"fcode/alipay": "1.0.1",
然后执行:
$ composer update -vvv
或者直接执行:
$ composer require fcode/alipay
The following gateways are provided by this package:
Gateway | Description | 说明 | Links |
---|---|---|---|
Alipay_AopPage | Alipay Page Gateway | 电脑网站支付 - new | Usage Doc |
Alipay_AopApp | Alipay APP Gateway | APP支付 - new | Usage Doc |
Alipay_AopF2F | Alipay Face To Face Gateway | 当面付 - new | Usage Doc |
Alipay_AopWap | Alipay WAP Gateway | 手机网站支付 - new | Usage Doc |
Alipay_AopJs | Alipay Js Gateway | JSAPI - new | Usage Doc |
Alipay_LegacyApp | Alipay Legacy APP Gateway | APP支付 | Usage Doc |
Alipay_LegacyExpress | Alipay Legacy Express Gateway | 即时到账 | Usage Doc |
Alipay_LegacyWap | Alipay Legacy WAP Gateway | 手机网站支付 | Usage Doc |
/**
* @var AopAppGateway $gateway
*/
$gateway = Omnipay::create('Alipay_AopPage');
$gateway->setSignType('RSA2'); // RSA/RSA2/MD5
$gateway->setAppId('the_app_id');
$gateway->setPrivateKey('the_app_private_key');
$gateway->setAlipayPublicKey('the_alipay_public_key');
$gateway->setReturnUrl('https://www.example.com/return');
$gateway->setNotifyUrl('https://www.example.com/notify');
/**
* @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 main Omnipay repository.
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.