PHPackages                             raphael/paypal-payout - 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. raphael/paypal-payout

ActiveLibrary[Payment Processing](/categories/payments)

raphael/paypal-payout
=====================

gateway of paypal payout

110PHP

Since Dec 5Pushed 7y ago1 watchersCompare

[ Source](https://github.com/ahadortiz/paypal-payout)[ Packagist](https://packagist.org/packages/raphael/paypal-payout)[ RSS](/packages/raphael-paypal-payout/feed)WikiDiscussions master Synced 2w ago

READMEChangelogDependenciesVersions (1)Used By (0)

raphael/paypal-payout
=====================

[](#raphaelpaypal-payout)

This package is developed for a special client.

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

[](#installation)

1. Install package

    ```
     composer require raphael/paypal-payout

    ```
2. publish config file

    ```
    php artisan vendor:publish

    ```

    After publishing, edit config/paypal.php with your setting

    ```
        return [
    	    'settings' => array(
        	    'mode' => env('PAYPAL_MODE', 'sandbox'),
        	    'http.ConnectionTimeOut' => 30,
    		    'log.LogEnabled' => true,
        	    'log.FileName' => storage_path() .  '/logs/paypal.log',
        	    'log.LogLevel' => 'ERROR'
    	    ),
    	    'sandbox' => [
        	    'client_id' => env('PAYPAL_SANDBOX_CLIENT_ID', ''),
        	    'secret' => env('PAYPAL_SANDBOX_SECRET', ''),
        	    'webhook_id' => env('PAYPAL_SANDBOX_WEBHOOK_ID', ''),
    	    ],
    	    'live' => [
        	    'client_id' => env('PAYPAL_LIVE_CLIENT_ID', ''),
        	    'secret' => env('PAYPAL_LIVE_SECRET', ''),
        	    'webhook_id' => env('PAYPAL_LIVE_WEBHOOK_ID', ''),
    	    ],
    ];

    ```
3. create table for payout log

    ```
    php artisan migrate

    ```
4. Set your paypal webhook url to `https://{your site url}/paypal/webhook`

Usage
-----

[](#usage)

### Create Payout

[](#create-payout)

```
$payout = new \Raphael\PaypalPayout\PaypalPayout;
$receiver = 'test@email.com';
$amount = 10;
$log = $payout::createPayout($receiver, $amount);

```

You'll get log object if payout has been created, but get null if fails.

###  Health Score

19

—

LowBetter than 9% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community4

Small or concentrated contributor base

Maturity39

Early-stage or recently created project

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.

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/31257875?v=4)[Raphael Aloi](/maintainers/ahadortiz)[@ahadortiz](https://github.com/ahadortiz)

### Embed Badge

![Health badge](/badges/raphael-paypal-payout/health.svg)

```
[![Health](https://phpackages.com/badges/raphael-paypal-payout/health.svg)](https://phpackages.com/packages/raphael-paypal-payout)
```

###  Alternatives

[omnipay/coinbase

Coinbase driver for the Omnipay payment processing library

18570.2k1](/packages/omnipay-coinbase)

PHPackages © 2026

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