PHP Classes

File: public/index.php

Recommend this page to a friend!
  Classes of nvb   PHP Mock HTTP Server   public/index.php   Download  
File: public/index.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Mock HTTP Server
Test HTTP requests with configurable responses
Author: By
Last change:
Date: 5 years ago
Size: 284 bytes
 

Contents

Class file image Download
<?php
/**
 * @author stev leibelt <artodeto@bazzline.net>
 * @since 2015-12-14
 */

use Net\Bazzline\HttpRequestMockServer\HttpRequestMockServerFactory;

require_once
__DIR__ . '/../vendor/autoload.php';

$factory = new HttpRequestMockServerFactory();

$factory->create()->execute();