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 14c417a391 Merge branch '2.3' into 2.5
* 2.3:
  added missing files
  [TwigBundle] added a test
  Indicate which file was being parsed if an exception is thrown while running translation:debug
  [ClassLoader] Cast $useIncludePath property to boolean
  [HttpFoundation] Minor spelling fix in PHPDocs
  improve error message for multiple documents
  [Session] remove invalid workaround in session regenerate
  [Kernel] ensure session is saved before sending response
  [Routing] serialize the compiled route to speed things up
  [Validator] Fixed Regex::getHtmlPattern() to work with complex and negated patterns
  [DependencyInjection] use inheritdoc for loaders
  [Config] fix filelocator with empty name
  [Form] fix form handling with unconventional request methods like OPTIONS
  CSRF warning docs on Request::enableHttpMethodParameterOverride()

Conflicts:
	src/Symfony/Component/Routing/Route.php
2014-11-03 04:54:42 +01:00
..
Definition Remove aligned '=>' and '=' 2014-10-30 21:17:55 +01:00
Exception made phpdoc types consistent with those defined in Hack 2014-04-15 07:41:45 +02:00
Loader Merge branch '2.3' into 2.5 2014-11-03 04:54:42 +01:00
Resource [Config] fix filelocator with empty name 2014-10-13 20:50:59 +02:00
Tests Merge branch '2.3' into 2.5 2014-11-03 04:54:42 +01:00
Util Merge branch '2.3' into 2.4 2014-09-23 07:24:59 +02:00
.gitignore Added missing files .gitignore 2013-07-21 14:12:18 +02:00
CHANGELOG.md [DIC] Better handling of enableable configurations 2013-01-28 18:21:49 +01:00
composer.json updated version to 2.5 2013-11-24 21:17:07 +01:00
ConfigCache.php Merge branch '2.4' into 2.5 2014-09-22 11:14:18 +02:00
FileLocator.php [Config] fix filelocator with empty name 2014-10-13 20:50:59 +02:00
FileLocatorInterface.php [Config] fix filelocator with empty name 2014-10-13 20:50:59 +02:00
LICENSE update year on licenses 2014-01-07 08:19:25 -05:00
phpunit.xml.dist removed defaults from PHPUnit configuration 2014-07-07 12:13:42 +02:00
README.md updated the composer install command to reflect changes in Composer 2013-09-18 09:27:26 +02: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.phar install
$ phpunit