1. Go to this page and download the library: Download doppiogancio/mocked-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/ */
doppiogancio / mocked-client example snippets
use DoppioGancio\MockedClient\HandlerBuilder;
use DoppioGancio\MockedClient\ClientBuilder;
use DoppioGancio\MockedClient\Route\RouteBuilder;
use GuzzleHttp\Psr7\Response;
use Http\Discovery\Psr17FactoryDiscovery;
use Psr\Log\NullLogger;
$handlerBuilder = new HandlerBuilder(
Psr17FactoryDiscovery::findServerRequestFactory(),
new NullLogger()
);
$route = new RouteBuilder(
Psr17FactoryDiscovery::findResponseFactory(),
Psr17FactoryDiscovery::findStreamFactory(),
);
// Route with Response
$handlerBuilder->addRoute(
$route->new()
->withMethod('GET')
->withPath('/country/IT')
->withResponse(new Response(200, [], '{"id":"+39","code":"IT","name":"Italy"}'))
->build()
);
$clientBuilder = new ClientBuilder($handlerBuilder);
$client = $clientBuilder->build();
$handlerBuilder = new HandlerBuilder(
Psr17FactoryDiscovery::findServerRequestFactory(),
new NullLogger()
);
// don't add any route for now...
$clientBuilder = new ClientBuilder($handlerBuilder);
$client = $clientBuilder->build();
self::$container->set(Client::class, $client);
// In Symfony
self::$container->set('eight_points_guzzle.client.my_client', $client);
shell
$ composer
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.