The Wayback Machine - https://web.archive.org/web/20150215053037/https://github.com/symfony/HttpKernel
Skip to content

HTTPS clone URL

Subversion checkout URL

You can clone with HTTPS or Subversion.

Download ZIP
[READ-ONLY] Subtree split of the Symfony HttpKernel Component -- clone into Symfony/Component/ (master at symfony/symfony)

Merge branch '2.7'

* 2.7: (26 commits)
  removed Propel bridge from Symfony Core
  [2.7] Added deprecation warning for get request service in controller
  [Serializer] Normalizers can serialize collections and scalars
  [FrameworkBundle] Fix title and placeholder rendering in php form templates.
  [Process] added a deprecation notice
  [TwigBridge] Removed duplicated code from TwigRenderer
  [Translator][Logging] implement TranslatorBagInterface.
  RequestDataCollector - small fix
  renamed composer.phar to composer to be consistent with the Symfony docs
  [FrameworkBundle] bumped min version of Routing to 2.3
  removed composer --dev option everywhere
  fixed a test
  [Console] Fixed output bug, if escaped string in a formatted string.
  “console help” ignores --raw option
  Fix form icon position in web profiler
  [Security] Remove ContextListener's onKernelResponse listener as it is used
  Revert "minor #12652 [HttpFoundation] [Hackday] #9942 test: Request::getContent() for null value (skler)"
  Revert "fixed assertion"
  fixed assertion
  [HttpFoundation] [Hackday] #9942 test: Request::getContent() for null value
  ...

Conflicts:
	composer.json
	src/Symfony/Bridge/Propel1/composer.json
	src/Symfony/Bridge/Twig/composer.json
	src/Symfony/Component/Console/Tests/Helper/LegacyTableHelperTest.php
latest commit 433b9a6664
Fabien Potencier fabpot authored
Failed to load latest commit information.
Bundle New php library structure made easier
CacheClearer [2.3] CS And DocBlock Fixes
CacheWarmer Merge branch '2.3' into 2.5
Config Make the container considered non-fresh if the environment parameters…
Controller [DX] Attempt to improve logging messages with parameters
DataCollector Merge branch '2.7'
Debug Merge branch '2.7'
DependencyInjection [HttpKernel] fixed missing use cases
Event Merge branch '2.3' into 2.5
EventListener Merge branch '2.6' into 2.7
Exception Merge branch '2.6' into 2.7
Fragment Merge branch '2.7'
HttpCache [HttpKernel] fixed deprecation notices for ESI classes
Log added missing E_USER_DEPRECATED argument to trigger_error() calls
Profiler [HttpKernel] [WebProfilerBundle] added HTTP status to profiler search…
Tests Merge branch '2.7'
.gitignore Fix gitignore
CHANGELOG.md Merge branch '2.7'
Client.php Merge branch '2.3' into 2.5
HttpKernel.php [HttpKernel] deprecated ContainerAwareHttpKernel
HttpKernelInterface.php Docblock fixes
Kernel.php Merge branch '2.7'
KernelEvents.php Merge branch '2.3' into 2.5
KernelInterface.php Merge branch '2.7'
LICENSE Updated copyright to 2015
README.md renamed composer.phar to composer to be consistent with the Symfony docs
TerminableInterface.php fixed CS
UriSigner.php Merge branch '2.3' into 2.5
composer.json [3.0] Update required PHP to 5.5.9
phpunit.xml.dist Adjust error_reporting to allow deprecation messages for 3.0

README.md

HttpKernel Component

HttpKernel provides the building blocks to create flexible and fast HTTP-based frameworks.

HttpKernelInterface is the core interface of the Symfony full-stack framework:

interface HttpKernelInterface
{
    /**
     * Handles a Request to convert it to a Response.
     *
     * @param Request $request A Request instance
     *
     * @return Response A Response instance
     */
    function handle(Request $request, $type = self::MASTER_REQUEST, $catch = true);
}

It takes a Request as an input and should return a Response as an output. Using this interface makes your code compatible with all frameworks using the Symfony components. And this will give you many cool features for free.

Creating a framework based on the Symfony components is really easy. Here is a very simple, but fully-featured framework based on the Symfony components:

$routes = new RouteCollection();
$routes->add('hello', new Route('/hello', array('_controller' =>
    function (Request $request) {
        return new Response(sprintf("Hello %s", $request->get('name')));
    }
)));

$request = Request::createFromGlobals();

$context = new RequestContext();
$context->fromRequest($request);

$matcher = new UrlMatcher($routes, $context);

$dispatcher = new EventDispatcher();
$dispatcher->addSubscriber(new RouterListener($matcher));

$resolver = new ControllerResolver();

$kernel = new HttpKernel($dispatcher, $resolver);

$kernel->handle($request)->send();

This is all you need to create a flexible framework with the Symfony components.

Want to add an HTTP reverse proxy and benefit from HTTP caching and Edge Side Includes?

$kernel = new HttpKernel($dispatcher, $resolver);

$kernel = new HttpCache($kernel, new Store(__DIR__.'/cache'));

Want to functional test this small framework?

$client = new Client($kernel);
$crawler = $client->request('GET', '/hello/Fabien');

$this->assertEquals('Fabien', $crawler->filter('p > span')->text());

Want nice error pages instead of ugly PHP exceptions?

$dispatcher->addSubscriber(new ExceptionListener(function (Request $request) {
    $msg = 'Something went wrong! ('.$request->get('exception')->getMessage().')';

    return new Response($msg, 500);
}));

And that's why the simple looking HttpKernelInterface is so powerful. It gives you access to a lot of cool features, ready to be used out of the box, with no efforts.

Resources

You can run the unit tests with the following command:

$ cd path/to/Symfony/Component/HttpKernel/
$ composer install
$ phpunit
Something went wrong with that request. Please try again.
Morty Proxy This is a proxified and sanitized view of the page, visit original site.