PHPackages                             wameed/urway-payment-gateway - 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. wameed/urway-payment-gateway

ActiveLibrary[Payment Processing](/categories/payments)

wameed/urway-payment-gateway
============================

laravel package for Urway payment service

v1.1(3y ago)4961↓62.5%3MITPHPPHP &gt;=7.4

Since Mar 22Pushed 3y ago1 watchersCompare

[ Source](https://github.com/Alsharie/wammed-urway)[ Packagist](https://packagist.org/packages/wameed/urway-payment-gateway)[ RSS](/packages/wameed-urway-payment-gateway/feed)WikiDiscussions master Synced 2d ago

READMEChangelog (2)Dependencies (2)Versions (3)Used By (0)

wammed-urway (URWAY Payment Gateway)
====================================

[](#wammed-urway--urway-payment-gateway)

laravel package for urway payment getway

install the package `composer require wameed/urway-payment-gateway`

You can publish using the following command

`php artisan vendor:publish --provider="Wameed\UrwayPaymentGateway\UrwayServiceProvider"`

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

```
return [
    'auth' => [
        'terminal_id' => env('URWAY_TERMINAL_ID'),
        'password' => env('URWAY_PASSWORD'),
        'merchant_key' => env('URWAY_MERCHANT_KEY'),
    ],
    'url'=>[
        //change 'payments-dev.urway-tech' to 'payments.urway-tech' when you are ready to go live
        'base'=>env('URWAY_BASE_URL','https://payments-dev.urway-tech.com'),
        'payment'=>env('URWAY_PAYMENT_URL','URWAYPGService/transaction/jsonProcess/JSONrequest'),
    ]
];
```

send payment data

```
  $urway = new Urway();

  $urway->setTrackId($trackID)
        ->setAmount($total_after_cal_tax)
        ->setCurrency('SAR')
        ->setCountry('SA')
        ->setAttribute('udf1', 'udf1')
        ->setPaymentPageLanguage('ar')
        ->setAttribute('udf4', 'udf4')
        ->setAttribute('udf5', 'udf5')
        ->setCustomerEmail($request->email)
        ->setRedirectUrl(route('user.payment.verify'));

  $response = $urway->pay();

  $payment_url = $response->getPaymentUrl();
```

to veriry the payment

```
        $urway = new Urway();

        $urway->setTrackId(request('TrackId'))
            ->setAmount(request('amount'))
            ->setCurrency('SAR');

        $redirect_url = $urway->verify(request('TranId'));

        return $redirect_url->body();
```

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity22

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity50

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~76 days

Total

2

Last Release

1437d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/ea1e02a853f19eb13769c87ef731c4988ffd8fece015761090e63717a8cdb06d?d=identicon)[alsharie](/maintainers/alsharie)

---

Top Contributors

[![Alsharie](https://avatars.githubusercontent.com/u/39643416?v=4)](https://github.com/Alsharie "Alsharie (15 commits)")

### Embed Badge

![Health badge](/badges/wameed-urway-payment-gateway/health.svg)

```
[![Health](https://phpackages.com/badges/wameed-urway-payment-gateway/health.svg)](https://phpackages.com/packages/wameed-urway-payment-gateway)
```

###  Alternatives

[sebdesign/laravel-viva-payments

A Laravel package for integrating the Viva Payments gateway

4845.9k](/packages/sebdesign-laravel-viva-payments)[musahmusah/laravel-multipayment-gateways

A Laravel Package that makes implementation of multiple payment Gateways endpoints and webhooks seamless

852.2k1](/packages/musahmusah-laravel-multipayment-gateways)[karson/mpesa-php-sdk

172.2k](/packages/karson-mpesa-php-sdk)[aedart/athenaeum

Athenaeum is a mono repository; a collection of various PHP packages

245.2k](/packages/aedart-athenaeum)[henryejemuta/laravel-monnify

A laravel package to seamlessly integrate monnify api within your laravel application

132.1k](/packages/henryejemuta-laravel-monnify)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
