2017 © Pedro Peláez
 

library simple-http-server

Simple HTTP Server based on HttpFoundation w/o concurrency

image

brzuchal/simple-http-server

Simple HTTP Server based on HttpFoundation w/o concurrency

  • Saturday, September 2, 2017
  • by brzuchal
  • Repository
  • 1 Watchers
  • 0 Stars
  • 8 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

Simple HTTP Server

Simple HTTP Server based on Symfony/HttpFoundation w/o concurrency in PHP, (*1)

Install

With Composer, (*2)

composer require brzuchal/simple-http-server

Usage

Simple usage:, (*3)

use Brzuchal\SimpleHTTPServer\Server;
use Brzuchal\SimpleHTTPServer\SilexAdapter;
use Silex\Application;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;

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

$app = new Application(['debug' => true]);
$app->get('/', function (Request $request) use ($app) {
    return new Response('

Hello World!

Hello from Silex v' . $app::VERSION . ', (*4)

'); }); $server = new Server('0.0.0.0', $argc > 1 ? (int)$argv[1] : 80, $argc > 2 ? (bool)($argv[2] === '-v') : false); $server->documentRoot(__DIR__); $server->run(new SilexAdapter($app));

License

MIT License, (*5)

Copyright (c) 2017 Michał Brzuchalski michal.brzuchalski@gmail.com, (*6)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:, (*7)

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software., (*8)

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE., (*9)

The Versions

02/09 2017

dev-master

9999999-dev

Simple HTTP Server based on HttpFoundation w/o concurrency

  Sources   Download

MIT

The Requires

 

02/09 2017

1.0.0

1.0.0.0

Simple HTTP Server based on HttpFoundation w/o concurrency

  Sources   Download

MIT

The Requires