https://github.com/xutl/laravel-payment
laravel支付
https://github.com/xutl/laravel-payment
Last synced: 2 months ago
JSON representation
laravel支付
- Host: GitHub
- URL: https://github.com/xutl/laravel-payment
- Owner: xutl
- License: mit
- Created: 2018-12-20T01:59:04.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-12-27T08:33:50.000Z (over 6 years ago)
- Last Synced: 2025-01-20T12:46:36.905Z (4 months ago)
- Language: PHP
- Size: 17.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# laravel-payment
This is a aliyun expansion for the laravel
[](https://packagist.org/packages/xutl/laravel-payment)
[](https://packagist.org/packages/xutl/laravel-payment)
[](https://packagist.org/packages/xutl/laravel-payment)## 接口支持
- AliPay## 环境需求
- PHP >= 7.0
## Installation
```bash
composer require xutl/laravel-payment
```## for Laravel
This service provider must be registered.
```php
// config/app.php'providers' => [
'...',
XuTL\Payment\PaymentServiceProvider::class,
];
```## Use
```php
try {
$wechat = Payment::get('wechat');
} catch (\Exception $e) {
print_r($e->getMessage());
}
```