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/Config
Fabien Potencier 1b85799602 Merge branch '3.0'
* 3.0: (21 commits)
  fixed typo
  fixed typo
  Fixed a minor XML issue in a translation file
  Fix merge
  Fix merge
  Fix merge
  Fix merge
  Update twig.html.twig
  PhpUnitNoDedicateAssertFixer results
  disable the assets helper when assets are disabled
  Improve Norwegian translations
  [2.7] [FrameworkBundle] minor fix tests added by #17569
  Fixed the antialiasing of the toolbar text
  Simplify markdown for PR template
  fixed CS
  fixed CS
  documented the $url parameter better
  [Form] add test for ArrayChoiceList handling null
  [Form] fix edge cases with choice placeholder
  register commands from kernel when accessing list
  ...
2016-02-23 17:17:05 +01:00
..
Definition Merge branch '2.8' into 3.0 2016-02-16 07:11:42 +01:00
Exception Merge branch '2.3' into 2.6 2015-04-18 17:02:51 +02:00
Loader use try-finally when possible 2015-09-28 14:06:46 +02:00
Resource Improved FileResource and DirectoryResource 2016-02-03 13:36:07 +01:00
Tests Merge branch '3.0' 2016-02-23 17:17:05 +01:00
Util [2.6] Static Code Analysis for Components and Bundles 2015-07-08 07:59:48 +02:00
.gitignore Added missing files .gitignore 2013-07-21 14:12:18 +02:00
CHANGELOG.md [3.0][Config] Remove ResourceInterface::getResource() which was deprecated in 2.8 2015-09-28 22:39:35 +02:00
composer.json Merge branch '3.0' 2016-02-18 10:00:40 +01:00
ConfigCache.php Removed Resource#isFresh() related functionality 2015-09-26 17:53:58 +02:00
ConfigCacheFactory.php Implement service-based Resource (cache) validation 2015-09-25 08:31:17 +02:00
ConfigCacheFactoryInterface.php fixes CS 2015-08-24 09:13:45 +02:00
ConfigCacheInterface.php fixes CS 2015-08-24 09:13:45 +02:00
FileLocator.php Remove duplicated paths 2015-06-12 16:45:17 -03:00
FileLocatorInterface.php [Config] fix filelocator with empty name 2014-10-13 20:50:59 +02:00
LICENSE Update copyright year 2016-01-01 23:53:47 -03:00
phpunit.xml.dist Add missing exclusions from phpunit.xml.dist 2015-11-18 09:19:46 +01:00
README.md renamed composer.phar to composer to be consistent with the Symfony docs 2015-02-08 08:41:14 +01:00
ResourceCheckerConfigCache.php Implement service-based Resource (cache) validation 2015-09-25 08:31:17 +02:00
ResourceCheckerConfigCacheFactory.php Implement service-based Resource (cache) validation 2015-09-25 08:31:17 +02:00
ResourceCheckerInterface.php fixed CS 2016-01-21 10:24:53 +01:00

Config Component

Config provides the infrastructure for loading configurations from different data sources and optionally monitoring these data sources for changes. There are additional tools for validating, normalizing and handling of defaults that can optionally be used to convert from different formats to arrays.

Resources

You can run the unit tests with the following command:

$ cd path/to/Symfony/Component/Config/
$ composer install
$ phpunit