neverlxsss / monobank-laravel
Laravel wrapper package for the monobank API
Installs: 1 031
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 1
Open Issues: 0
pkg:composer/neverlxsss/monobank-laravel
Requires
- guzzlehttp/guzzle: ^7.2
README
A Laravel package for the Monobank
Installation
composer require neverlxsss/monobank-laravel
Add a ServiceProvider to your providers array in config/app.php:
'providers' => [ //other things here Neverlxsss\Monobank\MonobankServiceProvider::class, ];
Add the facade to the facades array:
'aliases' => [ //other things here 'Monobank' => Neverlxsss\Monobank\Facades\Monobank::class, ];
Finally, publish the configuration files:
php artisan vendor:publish --provider="Neverlxsss\Monobank\MonobankServiceProvider"
Configuration
Please set your API: MONOBANK_TOKEN in the .env file