teepluss/epay
Composer 安装命令:
composer require teepluss/epay
包简介
Laravel Epay is payment gateway adapter.
README 文档
README
Epay is deprecated. Please use the Gateway
Epay is payment gateway adapters.
Installation
To get the lastest version of Epay simply require it in your composer.json file.
"teepluss/epay": "dev-master"
You'll then need to run composer install to download it and have the autoloader updated.
Once Epay is installed you need to register the service provider with the application. Open up app/config/app.php and find the providers key.
'providers' => array(
'Teepluss\Epay\EpayServiceProvider'
)
Epay also ships with a facade which provides the static syntax for creating collections. You can register the facade in the aliases key of your app/config/app.php file.
'aliases' => array(
'Epay' => 'Teepluss\Epay\Facades\Epay'
)
Usage
Generate payment form.
$adapter = Epay::factory('paypal'); $adapter->setSandboxMode(true); $adapter->setSuccessUrl('http://www.domain/foreground/success') ->setCancelUrl('http://www.domain/foreground/cancel') ->setBackendUrl('http://www.domain/background/invoice/00001'); $adapter->setMerchantAccount('demo@gmail.com'); $adapter->setLanguage('TH') ->setCurrency('THB'); $adapter->setInvoice(00001) ->setPurpose('Buy a beer.') ->setAmount(100); $adapter->setRemark('Short note'); $generated = $adapter->render(); var_dump($generated);
Checking foregound process.
$adapter = Epay::factory('paypal'); $adapter->setSandboxMode(true); $adapter->setMerchantAccount('demo@gmail.com'); $adapter->setInvoice(00001); $result = $adapter->getFrontendResult(); var_dump($result);
Checking background process (IPN)
$adapter = Epay::factory('paypal'); $adapter->setSandboxMode(true); $adapter->setMerchantAccount('demo@gmail.com'); $adapter->setInvoice(00001); $result = $adapter->getBackendResult(); var_dump($result);
Support or Contact
If you have some problem, Contact teepluss@gmail.com
统计信息
- 总下载量: 125
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 4
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2013-10-21