PHP code example of korchasa / php-vhs
1. Go to this page and download the library: Download korchasa/php-vhs 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/ */
korchasa / php-vhs example snippets
declare(strict_types=1);
namespace korchasa\Vhs\Tests;
use korchasa\Vhs\VhsTestCase;
use PHPUnit\Framework\TestCase;
class AwesomeClientOfflineTest extends TestCase
{
use VhsTestCase;
/** @var AwesomeClient */
private $packagistClient;
public function setUp()
{
$client = new AwesomeClient("bla-bla-bla-bla-bla-bla.commmm");
$client->setGuzzle($this->connectVhs($client->getGuzzle(), $offline = true));
$this->packagistClient = $client;
}
public function testSuccessStory(): void
{
$this->assertVhs(function () {
$packageName = $this->packagistClient->getFirstTagName();
$this->assertEquals('korchasa/php-vhs', $packageName);
});
}
public function testWithFail(): void
{
$this->assertVhs(function () {
$resp = $this->packagistClient->auth();
$this->assertEquals(403, $resp);
});
}
}
bash
composer