nikjaysix/laravel-pinpayments
Composer 安装命令:
composer require nikjaysix/laravel-pinpayments
包简介
Laravel service provider for the Pin Payments API using the neotix/pin-php API.
README 文档
README
This is a wrapper using the noetix/pin-php library for the Pin Payments API. It creates a service provider and facade for autoloading into laravel.
How to Install
Laravel 5.+
-
Install the
nikjaysix/laravel-pinpaymentspackage$ composer require nikjaysix/laravel-pinpayments
-
Update
config/app.phpto activate the LaravelPinPayments package# Add `LaravelPinPaymentsServiceProvider` to the `providers` array 'providers' => array( ... NikJaySix\LaravelPinPayments\LaravelPinPaymentsServiceProvider::class, ) # Add the `LaravelPinPaymentsFacade` to the `aliases` array 'aliases' => array( ... 'PinPayments' => NikJaySix\LaravelPinPayments\LaravelPinPaymentsFacade::class )
-
Generate a PinPayments config file
$ php artisan vendor:publish
-
Update
app/config/chargify.phpwith your Pin Payments API credentialsreturn array( 'key' => '' );
Example Usage
统计信息
- 总下载量: 38
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-09-11