Download the PHP package saeedvaziry/payir without Composer

On this page you can find all versions of the php package saeedvaziry/payir. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package payir

⚠️ This repository is archived and is not maintained anymore.

Please consider using Pay.ir PHP SDK instead

Pay.ir Laravel

Laravel package to connect to Pay.ir Payment Gateway

Installation

composer require saeedvaziry/payir

Publish Configurations

php artisan vendor:publish --provider="SaeedVaziry\Payir\PayirServiceProvider"

Config

Set your api key and redirect url in .env file:

PAYIR_API_KEY=test
PAYIR_REDIRECT=/payir/callback

Usage

Payment Controller

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;
use SaeedVaziry\Payir\Exceptions\SendException;
use SaeedVaziry\Payir\Exceptions\VerifyException;
use SaeedVaziry\Payir\PayirPG;

class PaymentController extends Controller
{
    public function pay()
    {
        $payir = new PayirPG();
        $payir->amount = 1000; // Required, Amount
        $payir->factorNumber = 'Factor-Number'; // Optional
        $payir->description = 'Some Description'; // Optional
        $payir->mobile = '0912XXXXXXX'; // Optional, If you want to show user's saved card numbers in gateway
        $payir->validCardNumber = '6219860000000000'; // Optional, If you want to limit the payable card

        try {
            $payir->send();

            return redirect($payir->paymentUrl);
        } catch (SendException $e) {
            throw $e;
        }
    }

    public function verify(Request $request)
    {
        $payir = new PayirPG();
        $payir->token = $request->token; // Pay.ir returns this token to your redirect url

        try {
            $verify = $payir->verify(); // returns verify result from pay.ir like (transId, cardNumber, ...)

            dd($verify);
        } catch (VerifyException $e) {
            throw $e;
        }
    }
}

Routes

Route::get('/payir/callback', 'PaymentController@verify');

Usage with facade

Config aliases in config/app.php :

'Payir' => SaeedVaziry\Payir\Facades\Payir::class

Send

Payir::send($amount, $redirect = null, $factorNumber = null, $mobile = null, $description = null);

Send2

Alternatively, You can use send2 method in facade to send optional data to Pay.ir

Payir::send2([
  'amount' => 10000,
  'redirect' => 'Your-Redirect-Url', // optional
  'factorNumber' => 'The-Factor-Number', // optional
  'mobile' => 'Mobile-Number', // optional
  'api' => 'API-Key', // optional, If you don't send this the package will read this from env
  'description' => 'Your-Description', // optional
  'validCardNumber' => 'Valid-Card-Number' // optional
]);

Verify

Payir::verify($token);

Security

If you discover any security related issues, please create an issue or email me ([email protected])

License

This repo is open-sourced software licensed under the MIT license.


All versions of payir with dependencies

PHP Build Version
Package Version
Requires php Version ^7.1.3 || ^8.0
ext-curl Version *
ext-json Version *
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package saeedvaziry/payir contains the following files

Loading the files please wait ....