xutl / laravel-payment
This is a Laravel expansion for the Payment.
Installs: 4
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/xutl/laravel-payment
Requires
- php: >=7.0
- ext-dom: *
- ext-json: *
- ext-libxml: *
- ext-openssl: *
- ext-simplexml: *
- xutl/supports: ^1.0
This package is auto-updated.
Last update: 2025-09-27 23:26:37 UTC
README
This is a aliyun expansion for the laravel
接口支持
- AliPay
环境需求
- PHP >= 7.0
Installation
composer require xutl/laravel-payment
for Laravel
This service provider must be registered.
// config/app.php 'providers' => [ '...', XuTL\Payment\PaymentServiceProvider::class, ];
Use
try { $wechat = Payment::get('wechat'); } catch (\Exception $e) { print_r($e->getMessage()); }