kozz / best2pay
Best2Pay integration
Installs: 51
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 3
Open Issues: 0
Type:project
Requires
- php: ~5.5|~7.0
- guzzlehttp/guzzle: ~6.0
- illuminate/support: ~5.0
Requires (Dev)
- phpunit/phpunit: 5.2.*
Suggests
- kozz/laravel-guzzle-provider: Suggested for loading Guzzle from the application service registry (~6.0)
README
Best2Pay API integration (including Laravel service provider)
Installation
composer require kozz/best2pay ~0.2
Laravel service registration
Package supports auto discovery for Laravel > 5.5
If you have Laravel <5.5, add service provider in configs/app.php
'providers' => [ /* * Laravel Framework Service Providers... */ ... /* * Application Service Providers... */ ... Kozz\Best2Pay\Laravel\Providers\Best2PayServiceProvider::class ],
You can also add Facade (configs/app.php
)
'aliases' => [ ... 'Best2Pay' => Kozz\Best2Pay\Laravel\Facades\Best2PayFacade::class ],
Then run command (it will create config/best2pay.php
file)
php artisan vendor:publish