PHPackages                             abdallahmohammed/urway-laravel - 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. [API Development](/categories/api)
4. /
5. abdallahmohammed/urway-laravel

ActiveLibrary[API Development](/categories/api)

abdallahmohammed/urway-laravel
==============================

URWAY REST API package for Laravel

1.2.3(2y ago)812.1k7MITPHPPHP ^7.4|8.\*

Since Sep 3Pushed 2y ago1 watchersCompare

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

READMEChangelog (8)Dependencies (4)Versions (9)Used By (0)

URWAY Payment Gateway (Laravel Package)
---------------------------------------

[](#urway-payment-gateway-laravel-package)

### Installation

[](#installation)

```
composer require abdallahmohammed/urway-laravel
```

In Laravel starting from 6.x the service provider will automatically get registered. In older versions of the framework just add the service provider in `config/app.php` file:

```
'providers' => [
    // ...
    URWay\URWayServiceProvider::class,
],
```

You can optionally register the facade in `config/app.php`

```
'facades' => [
    // ...
    'URWay' => URWay\Facade\URWay::class,
],
```

You can publish using the following command

```
php artisan vendor:publish --provider="URWay\URWayServiceProvider"
```

When published, the `config/urway.php` config file contains:

```
