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 87f3c36d60 Merge branch '3.4' into 4.2
* 3.4: (24 commits)
  Apply php-cs-fixer rule for array_key_exists()
  [Security] Change FormAuthenticator if condition
  handles multi-byte characters in autocomplete
  speed up tests running them without debug flag
  [Translations] added missing Croatian validators
  Fix getItems() performance issue with RedisCluster (php-redis)
  [VarDumper] Keep a ref to objects to ensure their handle cannot be reused while cloning
  IntegerType: reject submitted non-integer numbers
  be keen to newcomers
  [HttpKernel] Fix possible infinite loop of exceptions
  fixed CS
  [Validator] Added missing translations for Afrikaans
  do not validate non-submitted form fields in PATCH requests
  Update usage example in ArrayInput doc block.
  [Console] Prevent ArgvInput::getFirstArgument() from returning an option value
  [Validator] Fixed duplicate UUID
  fixed CS
  [EventDispatcher] Fix unknown priority
  Avoid mutating the Finder when building the iterator
  [Validator] Add the missing translations for the Greek (el) locale
  ...
2019-02-23 16:17:42 +01:00
..
Bundle switched array() to [] 2019-01-16 10:39:14 +01:00
CacheClearer fixed CS 2019-01-16 19:35:49 +01:00
CacheWarmer fixed CS 2019-01-16 21:35:37 +01:00
Config Mark some/most implementations of Serializable as @internal 2019-01-30 10:03:33 +01:00
Controller Apply php-cs-fixer rule for array_key_exists() 2019-02-23 16:06:07 +01:00
ControllerMetadata Merge branch '3.4' into 4.1 2019-01-16 19:21:11 +01:00
DataCollector Merge branch '3.4' into 4.2 2019-02-08 14:06:27 +01:00
Debug Merge branch '3.4' into 4.2 2019-01-30 12:44:30 +01:00
DependencyInjection Merge branch '4.1' into 4.2 2019-01-16 21:31:39 +01:00
Event Merge branch '3.4' into 4.0 2018-07-26 11:08:35 +02:00
EventListener Merge branch '3.4' into 4.2 2019-02-23 16:17:42 +01:00
Exception fixed CS 2019-01-16 21:35:37 +01:00
Fragment Merge branch '3.4' into 4.2 2019-02-23 16:17:42 +01:00
HttpCache fixed CS 2019-01-16 19:35:49 +01:00
Log Merge branch '3.4' into 4.1 2019-01-16 19:21:11 +01:00
Profiler Merge branch '4.1' into 4.2 2019-01-16 21:31:39 +01:00
Resources Display the Welcome Page when there is no homepage defined 2018-03-11 13:19:35 -05:00
Tests Merge branch '4.1' into 4.2 2019-01-24 22:39:51 +01:00
.gitignore
CHANGELOG.md Merge branch '4.1' 2018-11-15 13:17:10 +01:00
Client.php Merge branch '3.4' into 4.1 2019-01-16 19:21:11 +01:00
composer.json Fix HttpKernel Debug requirement 2019-01-23 14:37:11 +01:00
HttpKernel.php Merge branch '4.1' into 4.2 2019-01-16 21:31:39 +01:00
HttpKernelInterface.php remove api tags from code 2015-09-28 19:11:22 +02:00
Kernel.php bumped Symfony version to 4.2.4 2019-02-03 13:51:55 +01:00
KernelEvents.php Merge branch '2.8' into 3.3 2017-11-05 16:47:03 +01:00
KernelInterface.php [HttpKernel] Introduce KernelInterface::getProjectDir() 2018-10-17 11:36:49 +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