PHPackages                             mikkycody/laravel-woven - 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. mikkycody/laravel-woven

ActiveLibrary[Payment Processing](/categories/payments)

mikkycody/laravel-woven
=======================

A Laravel Package for integrating with Woven Finance hassle-free

011PHP

Since Feb 4Pushed 3y ago1 watchersCompare

[ Source](https://github.com/mikkycody/laravel-woven)[ Packagist](https://packagist.org/packages/mikkycody/laravel-woven)[ RSS](/packages/mikkycody-laravel-woven/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

laravel-woven
=============

[](#laravel-woven)

> A Laravel Package for integrating with Woven Finance hassle-free

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

[](#installation)

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

```
composer require mikkycody/laravel-woven
```

Run `composer install` or `composer update` to download it and have the autoloader updated.

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

```
'providers' => [
    ...
    Mikkycody\Woven\WovenServiceProvider::class,
    ...
]
```

> If you use **Laravel &gt;= 5.5** you can skip this step

- `Mikkycody\Woven\WovenServiceProvider::class`

Also, register the Facade like so:

```
'aliases' => [
    ...
    'Woven' => Mikkycody\Woven\Facades\Woven::class,
    ...
]
```

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

[](#configuration)

Publish the configuration file using this command:

```
php artisan vendor:publish --provider="Mikkycody\Woven\WovenServiceProvider"
```

A configuration-file named `woven.php` will be created in your `config` directory:

```
