navidut/test2

The my test composer nr 2.

Installs: 8

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/navidut/test2

1.0.0 2024-11-12 14:21 UTC

This package is auto-updated.

Last update: 2025-09-13 15:20:49 UTC


README

The Navid Test PHP library

Compatible

PHP 5.7.x - 8.0.x

API Documention

API Specification

Installation

To install the library via composer, run the following command:

  • composer require navidut/test2

Or add "navidut/test2": "^1.0.0" to the "require" section in composer.json

Pure PHP Code

After you install the composer succssfully , you can add such php code and use the library

<?php
require __DIR__ . '/vendor/autoload.php'; // Autoload our classes


use Navidut\Test2\IPN;
use Navidut\Test2\Request;
use Navidut\Test2\Authorize;
use Navidut\Test2\Start;
use Navidut\Test2\VerifyAuth;


$start = new Start();
$start->doSomething();

$ipn = new IPN();
$ipn->doSomething();

$request = new Request();
$request->doSomething();

$authorize = new Authorize();
$authorize->doSomething();

$Start = new Start();
$Start->doSomething();

$verifyAuth = new VerifyAuth();
$verifyAuth->doSomething();