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/DependencyInjection/Loader
Fabien Potencier 62e3053769 refactored previous commit, fixed tests
How to upgrade?

For XML configuration files:

 * All extensions should now use the config tag (this is just a convention as
   the YAML configurations files do not use it anymore):

 * The previous change means that the doctrine and security bundles now are
   wrapped under a main "config" tag:

        <doctrine:config>
            <doctrine:orm />
            <doctrine:dbal />
        </doctrine:config>

        <security:config>
            <security:acl />
            ...
        </security:config>

For YAML configuration files:

 * The main keys have been renamed as follows:

        * assetic:config -> assetic
        * app:config -> framework
        * webprofiler:config -> web_profiler
        * doctrine_odm.mongodb -> doctrine_mongo_db
        * doctrine:orm -> doctrine: { orm: ... }
        * doctrine:dbal -> doctrine: { dbal: ... }
        * security:config -> security
        * security:acl -> security: { acl: ... }
        * twig.config -> twig
        * zend.config -> zend
2011-02-15 22:22:28 +01:00
..
schema/dic/services [DependencyInjection] Create explicit factoryClass property for Definitions 2011-02-05 20:39:42 +01:00
ClosureLoader.php moved common configuration classes to a new Config component 2011-02-13 22:31:50 +01:00
FileLoader.php [Dependency Injection] PHPDoc 2011-02-14 11:16:04 +01:00
IniFileLoader.php moved common configuration classes to a new Config component 2011-02-13 22:31:50 +01:00
PhpFileLoader.php moved common configuration classes to a new Config component 2011-02-13 22:31:50 +01:00
XmlFileLoader.php implicitly load all registered bundles, all loading is now handled by load(), disable loading of an extension explcitly via setting the extension config to false (for now only Yaml is implemented) 2011-02-15 22:11:08 +01:00
YamlFileLoader.php refactored previous commit, fixed tests 2011-02-15 22:22:28 +01:00