mirror of
https://github.com/guzzle/guzzle.git
synced 2025-02-24 10:03:27 +01:00
12 lines
237 B
PHP
12 lines
237 B
PHP
<?php
|
|
require __DIR__ . '/../vendor/autoload.php';
|
|
require __DIR__ . '/../vendor/guzzlehttp/ring/tests/Client/Server.php';
|
|
|
|
use GuzzleHttp\Tests\Server;
|
|
|
|
Server::start();
|
|
|
|
register_shutdown_function(function () {
|
|
Server::stop();
|
|
});
|