This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/HttpKernel
Nicolas Grekas 36c306d0ed Merge branch '4.4'
* 4.4: (30 commits)
  fix merge
  fix merge
  [HttpClient] fix debug output added to stderr at shutdown
  fix cs
  [Mailer] fixed logic
  fixed missing license
  Add a new ErrorHandler component (mirror of the Debug component)
  Use mocks before replacing the error handler
  [Config] Do not use absolute path when computing the vendor freshness
  [Process] Path resolution for FCGI configuration
  Bump minimum version of symfony/phpunit-bridge
  Container*::getServiceIds() should return an array of string
  [Config][ReflectionClassResource] Use ternary instead of null coaelscing operator
  [Validator] Add missing Russian and Ukrainian translations
  [Translation] Use HTTPS and fix a url
  [Config] Fix for signatures of typed properties
  [Validator] Add missing Hungarian translations
  [Validator] Add Lithuanian translation for Range validator
  Add HTTPS to a URL
  sync translation files
  ...
2019-07-18 12:46:32 +02:00
..
Bundle remove deprecated features 2019-07-14 10:03:55 +02:00
CacheClearer fixed CS 2019-01-16 19:35:49 +01:00
CacheWarmer Replace @return annotation by return type in final classes 2019-06-23 00:57:33 +02:00
Config Mark some/most implementations of Serializable as @internal 2019-01-30 10:03:33 +01:00
Controller Merge branch '4.4' 2019-07-04 15:54:52 +02:00
ControllerMetadata Merge branch '4.4' 2019-06-26 11:36:22 +02:00
DataCollector Merge branch '4.4' 2019-07-18 12:46:32 +02:00
Debug Replace @return annotation by return type in final classes 2019-06-23 00:57:33 +02:00
DependencyInjection Add a new ErrorHandler component (mirror of the Debug component) 2019-07-18 09:54:35 +02:00
Event [HttpKernel] remove all deprecated event and replace their use 2019-06-07 22:41:09 +02:00
EventListener Merge branch '4.4' 2019-07-18 12:46:32 +02:00
Exception [HttpKernel] change $previous argument for HttpException to \Throwable 2019-03-30 08:30:07 +01:00
Fragment Remove various legacy code paths 2019-06-08 10:28:16 +02:00
HttpCache Merge branch '4.3' into 4.4 2019-06-17 19:38:10 +02:00
Log [Monolog] adding the new $request argument and remove deprecation 2019-06-04 09:12:36 +02:00
Profiler Remove deprecated code paths that trigger a runtime notice 2019-06-09 16:44:48 +02:00
Resources Optimize SVGs 2019-04-11 11:48:14 +02:00
Tests Merge branch '4.4' 2019-07-18 12:46:32 +02:00
.gitignore Fix gitignore 2014-03-04 18:06:29 +01:00
CHANGELOG.md Merge branch '4.4' 2019-07-17 20:45:05 +02:00
composer.json Merge branch '4.4' 2019-07-18 12:46:32 +02:00
HttpClientKernel.php [HttpClient] log requests, responses and pushes when they happen 2019-04-05 13:59:27 +02:00
HttpKernel.php Remove various legacy code paths 2019-06-08 10:28:16 +02:00
HttpKernelBrowser.php Remove various legacy code paths 2019-06-08 10:28:16 +02:00
HttpKernelInterface.php remove api tags from code 2015-09-28 19:11:22 +02:00
Kernel.php Merge branch '4.4' 2019-07-18 12:46:32 +02:00
KernelEvents.php [EventDispatcher] swap arguments of dispatch() to allow registering events by FQCN 2019-03-14 08:32:46 +01:00
KernelInterface.php [HttpKernel] remove all deprecated code from http kernel 2019-06-08 16:24:48 +02:00
LICENSE update year in license files 2019-01-01 14:45:19 +01:00
phpunit.xml.dist Bump phpunit XSD version to 5.2 2018-11-11 12:18:13 +01:00
README.md Updated all the README files 2016-03-04 08:12:06 +01:00
RebootableInterface.php [HttpKernel][FrameworkBundle] Add RebootableInterface, fix and un-deprecate cache:clear with warmup 2017-08-18 13:51:16 +02:00
TerminableInterface.php [DI] minor docblock fixes 2017-10-24 13:40:19 +02:00
UriSigner.php Merge branch '3.4' into 4.1 2019-01-16 19:21:11 +01:00

HttpKernel Component

The HttpKernel component provides a structured process for converting a Request into a Response by making use of the EventDispatcher component. It's flexible enough to create a full-stack framework (Symfony), a micro-framework (Silex) or an advanced CMS system (Drupal).

Resources