navidut / test2
The my test composer nr 2.
1.0.0
2024-11-12 14:21 UTC
Requires
- php: >=5.5
- ext-dom: *
- firebase/php-jwt: ^5.2
This package is auto-updated.
Last update: 2024-11-13 13:34:01 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();