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/Bundle/FrameworkBundle
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
..
CacheWarmer [FrameworkBundle] tweak Templating 2011-02-15 04:02:31 +01:00
Command [FrameworkBundle] fixed init:bundle command 2011-02-08 22:36:36 +01:00
Console added --debug/-d and --env/-d to console 2011-02-07 03:03:02 +01:00
Controller [Routing] Make trailing slashes in urls optional 2011-02-10 23:46:23 +01:00
DataCollector changed method signature to use the new KernelInterface 2011-01-25 17:20:20 +01:00
Debug changed the EventDispatcher and Event interfaces 2011-01-26 08:41:59 +01:00
DependencyInjection refactored previous commit, fixed tests 2011-02-15 22:22:28 +01:00
HttpCache renamed HttpKernel/Cache/ namespace to HttpKernel/HttpCache/ 2011-01-26 21:44:54 +01:00
HttpFoundation Simplify and fix the session listener 2011-02-15 03:35:25 +01:00
Resources renamed SQLiteProfilerStorage to SqliteProfilerStorage 2011-02-15 21:57:09 +01:00
Routing moved common configuration classes to a new Config component 2011-02-13 22:31:50 +01:00
Templating [Templating] Refactor the component 2011-02-14 21:11:44 +01:00
Test Removed assumption that phpunit.xml is relative 2011-01-24 07:35:45 +01:00
Tests refactored previous commit, fixed tests 2011-02-15 22:22:28 +01:00
Translation [Translation] fixed typo 2011-02-14 11:14:04 +01:00
Util [Standards] Changing many instances of "boolean" to "Boolean". 2011-01-21 09:53:24 +01:00
Validator normalized license messages in PHP files 2011-01-18 08:07:46 +01:00
Client.php removed KernelInterface::reboot() method 2011-01-26 08:41:59 +01:00
EventDispatcher.php changed the EventDispatcher and Event interfaces 2011-01-26 08:41:59 +01:00
FrameworkBundle.php added the concept of a main DIC extension for bundles 2011-02-15 22:11:07 +01:00
HttpKernel.php Do not catch subrequest exceptions, because it makes debugging hard. 2011-02-12 22:48:54 +01:00
RequestListener.php [FrameworkBundle] added port number to the context passed in to the router 2011-02-04 00:26:18 +01:00