1. Go to this page and download the library: Download mcustiel/phiremock-client 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/ */
mcustiel / phiremock-client example snippets
namespace My\Namespace;
use Mcustiel\Phiremock\Client\Factory;
use GuzzleHttp;
use Psr\Http\Client\ClientInterface;
class FactoryWithGuzzle7 extends Factory
{
public function createRemoteConnection(): ClientInterface
{
return new GuzzleHttp\Client();
}
}
use Mcustiel\Phiremock\Client\Connection\Host;
use Mcustiel\Phiremock\Client\Connection\Port;
$phiremockClient = Factory::createDefault()->createPhiremockClient(new Host('my.phiremock.host'), new Port('8080'));
use Mcustiel\Phiremock\Client\Connection\Host;
use Mcustiel\Phiremock\Client\Connection\Port;
use Mcustiel\Phiremock\Client\Connection\Scheme;
$phiremockClient = Factory::createDefault()->createPhiremockClient(new Host('my.phiremock.host'), new Port('8443'), Scheme::createHttps());
use Mcustiel\Phiremock\Client\Phiremock;
use Mcustiel\Phiremock\Client\Utils\A;
use Mcustiel\Phiremock\Client\Utils\Is;
use Mcustiel\Phiremock\Client\Utils\Respond;
use Mcustiel\Phiremock\Domain\Options\Priority;
// ...
$phiremockClient->createExpectation(
Phiremock::on(
A::getRequest()
->andUrl(Is::equalTo('/potato/tomato'))
->andBody(Is::containing('42'))
->andHeader('Accept', Is::equalTo('application/banana'))
->andFormField('name', Is::equalTo('potato'))
)->then(
Respond::withStatusCode(418)
->andBody('Is the answer to the Ultimate Question of Life, The Universe, and Everything')
->andHeader('Content-Type', 'application/banana')
)->setPriority(new Priority(5))
);
use Mcustiel\Phiremock\Client\Phiremock;
use function Mcustiel\Phiremock\Client\contains;
use function Mcustiel\Phiremock\Client\getRequest;
use function Mcustiel\Phiremock\Client\isEqualTo;
use function Mcustiel\Phiremock\Client\request;
use function Mcustiel\Phiremock\Client\respond;
use function Mcustiel\Phiremock\Client\on;
use Mcustiel\Phiremock\Domain\Options\Priority;
// ...
$phiremockClient->createExpectation(
on(
getRequest('/potato/tomato')
->andBody(contains('42'))
->andHeader('Accept', isEqualTo('application/banana'))
->andFormField('name', isEqualTo('potato'))
)->then(
respond(418)
->andBody('Is the answer to the Ultimate Question of Life, The Universe, and Everything')
->andHeader('Content-Type', 'application/banana')
)->setPriority(new Priority(5))
);