PHP code example of korotkiewicz / payu

1. Go to this page and download the library: Download korotkiewicz/payu library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

korotkiewicz / payu example snippets


'providers' => [
	Korotkiewicz\PayU\PayUServiceProvider::class
]

public function __construct(Application $app, Encrypter $encrypter)
{
    $this->except[] = config('payu.notify_url');

    parent::__construct($app, $encrypter);
}

bash
php artisan config:clear
php artisan vendor:publish