PHPackages                             prevailexcel/laravel-flick - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Payment Processing](/categories/payments)
4. /
5. prevailexcel/laravel-flick

ActiveLibrary[Payment Processing](/categories/payments)

prevailexcel/laravel-flick
==========================

A Laravel SDK for Flick

1.0.0(1y ago)195MITPHP

Since Jul 29Pushed 1y ago1 watchersCompare

[ Source](https://github.com/PrevailExcel/laravel-flick)[ Packagist](https://packagist.org/packages/prevailexcel/laravel-flick)[ RSS](/packages/prevailexcel-laravel-flick/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (1)Versions (2)Used By (0)

laravel-flick
=============

[](#laravel-flick)

[![Latest Stable Version](https://camo.githubusercontent.com/5214994aff2dcf19abd05402819cd8dc4759a9ee0bfc40715c655c3196e58d0f/68747470733a2f2f706f7365722e707567782e6f72672f7072657661696c657863656c2f6c61726176656c2d666c69636b2f762f737461626c652e737667)](https://packagist.org/packages/prevailexcel/laravel-flick)[![License](https://camo.githubusercontent.com/8b2834c7bc7cc42bd0f690126b027dc27a3755b462b47ae5dfbbdeb31aa3faf7/68747470733a2f2f706f7365722e707567782e6f72672f7072657661696c657863656c2f6c61726176656c2d666c69636b2f6c6963656e73652e737667)](LICENSE.md)[![PHP Code Style](https://camo.githubusercontent.com/61f5911cbbd162cb876dc3e33d69631681b720c6414052c2a77966b0292cd3ca/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f636f64655f7374796c652d5053522d2d31322d627269676874677265656e)](https://www.php-fig.org/psr/psr-12/)

> A Laravel Package for working with Flick Payments seamlessly.

Single connection to access financial data, identity, global accounts and multi-currency payments. Collect payments from individuals or businesses locally and globally, and settle them in multiple currencies, ensuring a cost-effective and hassle-free payment process.

This package also allows you to receive all types of webhooks from [Flick](https://getflick.co) which it verifies and handles the payloads for you. You can start collecting payment in payments in minutes.

```
Bank Transfers
Cards
Virtual Bank Accounts
Payouts

```

Installation
------------

[](#installation)

To get the latest version of Laravel Flick, simply require it

```
composer require prevailexcel/laravel-flick
```

Or add the following line to the require block of your `composer.json` file.

```
"prevailexcel/laravel-flick": "1.0.*"

```

You'll then need to run `composer install` or `composer update` to download it and have the autoloader updated.

Once Laravel Flick is installed, you need to register the service provider. Open up `config/app.php` and add the following to the `providers` key.

> If you use **Laravel &gt;= 5.5** you can skip this step and go to [**`configuration`**](https://github.com/PrevailExcel/laravel-flick#configuration)

```
'providers' => [
    ...
    PrevailExcel\Flick\FlickServiceProvider::class,
    ...
]
```

Also, register the Facade like so:

```
'aliases' => [
    ...
    'Flick' => PrevailExcel\Flick\Facades\Flick::class,
    ...
]
```

Configuration
-------------

[](#configuration)

You can publish the configuration file using this command:

```
php artisan vendor:publish --provider="PrevailExcel\Flick\FlickServiceProvider"
```

A configuration-file named `flick.php` with some sensible defaults will be placed in your `config` directory:

```
