drupal/core/lib/Drupal/Component
Lee Rowlands 1036f4cca0
Issue #3029197 by catch, Gábor Hojtsy, alexpott, mikelutz: [symfony 5] Class implements "Symfony\Component\DependencyInjection\ResettableContainerInterface" that is deprecated since Symfony 4.2, use "Symfony\Contracts\Service\ResetInterface" instead
2019-03-06 10:57:52 +10:00
..
Annotation Revert "Issue #2986725 by Mile23, devitate, alexpott: doctrine common 2.9 has moved reflection" 2018-12-25 21:49:26 +01:00
Assertion Issue #2901730 by mfernea, ankitjain28may, idebr: Fix 'Squiz.WhiteSpace.FunctionSpacing' coding standard 2018-05-11 10:26:36 +01:00
Bridge Issue #2976335 by alexpott, Erik Frèrejean, HenrikBak, andypost: Use Zend-Feed's standalone extension managers to prevent sites breaking 2018-07-30 20:50:51 +09:00
ClassFinder Revert "Issue #2986725 by Mile23, devitate, alexpott: doctrine common 2.9 has moved reflection" 2018-12-25 21:49:26 +01:00
Datetime Issue #2937853 by idebr, mfernea, SherFengChong, alexpott, borisson_: Fix 'Drupal.Formatting.MultipleStatementAlignment' coding standard 2018-08-13 11:13:36 +01:00
DependencyInjection Issue #3029197 by catch, Gábor Hojtsy, alexpott, mikelutz: [symfony 5] Class implements "Symfony\Component\DependencyInjection\ResettableContainerInterface" that is deprecated since Symfony 4.2, use "Symfony\Contracts\Service\ResetInterface" instead 2019-03-06 10:57:52 +10:00
Diff Issue #2849669 by alexpott, pwolanin, Munavijayalakshmi, dawehner: Fix \Drupal\Component\Utility\Unicode() because of the Symfony mbstring polyfill 2018-05-08 21:55:21 +01:00
Discovery Issue #2935137 by el7cosmos, Mixologic: License "GPL-2.0+" is a deprecated SPDX license identifier, use "GPL-2.0+-only" or "GPL-2.0+-or-later" instead 2018-01-23 18:28:55 +10:00
EventDispatcher Issue #2926120 by idebr, zaporylie, borisson_: @var tag must not end with a full stop 2018-05-15 06:49:38 +10:00
FileCache Issue #2935137 by el7cosmos, Mixologic: License "GPL-2.0+" is a deprecated SPDX license identifier, use "GPL-2.0+-only" or "GPL-2.0+-or-later" instead 2018-01-23 18:28:55 +10:00
FileSystem Issue #2935137 by el7cosmos, Mixologic: License "GPL-2.0+" is a deprecated SPDX license identifier, use "GPL-2.0+-only" or "GPL-2.0+-or-later" instead 2018-01-23 18:28:55 +10:00
Gettext Issue #2911606 by andypost, jludwig, msankhala, brathbone, imalabya, RajeevChoudhary, benjifisher: Replace usage of the deprecated LOCALE_PLURAL_DELIMITER constant 2018-11-19 11:59:53 +00:00
Graph Issue #2935137 by el7cosmos, Mixologic: License "GPL-2.0+" is a deprecated SPDX license identifier, use "GPL-2.0+-only" or "GPL-2.0+-or-later" instead 2018-01-23 18:28:55 +10:00
HttpFoundation Issue #3027835 by Gábor Hojtsy, catch: [symfony 4] Argument 1 passed to Symfony\Component\HttpFoundation\Response::setCharset() must be of the type string, null given 2019-01-24 20:34:59 +10:00
PhpStorage Issue #2883821 by David_Rothstein: Fix incorrect line spacing in private and temporary directory .htaccess files 2018-03-08 22:25:13 +00:00
Plugin Issue #2946122 by mikelutz, heddn, tim.plunkett, phenaproxima, alexpott, joelpittet, MegaChriz, joachim, xjm: Deprecate ConfigurablePluginInterface and replace with an interface that doesn't extend DependentPluginInterface 2019-02-24 13:42:45 +00:00
ProxyBuilder Issue #2935137 by el7cosmos, Mixologic: License "GPL-2.0+" is a deprecated SPDX license identifier, use "GPL-2.0+-only" or "GPL-2.0+-or-later" instead 2018-01-23 18:28:55 +10:00
Render Issue #2849669 by alexpott, pwolanin, Munavijayalakshmi, dawehner: Fix \Drupal\Component\Utility\Unicode() because of the Symfony mbstring polyfill 2018-05-08 21:55:21 +01:00
Serialization Issue #2937543 by alexpott, Berdir, larowlan: Using the Yaml::PARSE_KEYS_AS_STRINGS flag is deprecated since Symfony 3.4 as it will be removed in 4.0 2018-04-19 13:31:30 +01:00
Transliteration Issue #3001997 by Krzysztof Domański, scott_euser, alexpott: Transliteration a string containing an unknown character (e.g. 0x80) is not valid 2019-01-02 10:28:53 +00:00
Utility Issue #3000057 by kim.pepper, andypost, claudiu.cristea, voleger, dww, Berdir, larowlan: Deprecate drupal_set_time_limit() and file_upload_max_size() and move to Environment component 2019-03-01 11:01:32 +00:00
Uuid Issue #2982042 by progga: UUID component's composer.json has wrong description 2018-06-29 10:47:35 +01:00
Version Issue #2677532 by alexpott, Mile23, kim.pepper, dawehner, andypost, Eric_A, xjm, Mixologic, larowlan, phenaproxima, markcarver, borisson_: Move drupal_check_incompatibility() functionality to a new Dependency class and Version component 2018-10-22 15:21:49 +10:00
README.txt Issue #2303777 by sun, jhedstrom: Fixed Allow drupal components to depend on other components outside Drupal. 2014-11-17 13:19:02 +00:00

README.txt

Drupal Components are independent libraries that do not depend on the rest of
Drupal in order to function.

Components MAY depend on other Drupal Components or external libraries/packages,
but MUST NOT depend on any other Drupal code.

In other words, only dependencies that can be specified in a composer.json file
of the Component are acceptable dependencies.  Every Drupal Component presents a
valid dependency, because it is assumed to contain a composer.json file (even
if it may not exist yet).

Each Component should be in its own namespace, and should be as self-contained
as possible.  It should be possible to split a Component off to its own
repository and use as a stand-alone library, independently of Drupal.