Commit Graph

47 Commits

Author SHA1 Message Date
Christophe Coevoet
7ef629525e Removed the unnecessary file include
As of Doctrine 2.2, the ORM annotations can be found by the autoloader
directly.
2012-08-31 13:16:54 +02:00
Fabien Potencier
efb44640d1 removed unneeded code 2012-06-30 16:47:41 +02:00
Fabien Potencier
62100f1a18 merged 2.0 2012-06-29 18:03:08 +02:00
Fabien Potencier
b89b00fa20 bumped minimal version of Swiftmailer to 4.2.0 2012-06-29 18:02:19 +02:00
William DURAND
496878cf2d [Propel1] Removed useless require in autoload.php.dist
Since we have Composer, and a classmap, no need to trigger the Propel's autoloader
2012-04-20 09:46:34 +02:00
Jordan Alliot
7dc93619d0 Update autoload according to latest composer change 2012-04-19 23:57:43 +03:00
William Durand
e5eed5c31a Fixed autoload.php.dist 2012-04-19 01:46:46 +03:00
Fabien Potencier
ee0be6c408 tweaked previous merge 2012-04-18 11:17:58 +02:00
Dariusz Górecki
aa055dfd98 [Composer] Stwitch to composer vendors management
Bug fix: no
Feature addition: yes
Backwards compatibility break: ?
Symfony2 tests pass: yes
Fixes the following tickets: -
Todo: -

This speeds up Travis CI builds to `~2 min` also makes vendor management
a lot easier.
2012-04-08 21:11:03 +02:00
Christophe Coevoet
4d1333fa4f Changed the test autoloading to use the new autoloader 2012-04-01 23:50:54 +02:00
Piotr Błasiak
9ed7c03d6c fixed code coverage raport generation 2012-03-16 15:28:27 +01:00
Fabien Potencier
70532ca4a7 merged 2.0 2012-03-08 19:29:37 +01:00
Jordi Boggiano
d2f8aa3806 Allow autoload to run without vendors being cloned 2012-03-06 13:36:48 +01:00
Drak
2871ea062e Update composer for HttpFoundation's PHP 5.4 forward compatibility. 2012-02-22 07:07:18 +05:45
Drak
e585ca783d [HttpFoundation] Added forward compatibility for \SessionHandlerInterface 2012-02-22 07:07:07 +05:45
William DURAND
007de8c265 [Tests] [Propel] Added some tests for the ModelChoiceList class 2012-02-05 23:08:07 +01:00
Fabien Potencier
8333df6161 fixed autoloader when tests are run on a machine without intl installed 2011-07-20 14:27:10 +02:00
Benjamin Eberlei
9069d06732 Fix tests to run with Doctrine Common AnnotationRegistry 2011-07-03 16:44:01 +02:00
Fabien Potencier
524d51adf8 [AsseticBundle] moved the bundle to its own repository -- https://github.com/symfony/AsseticBundle 2011-06-15 22:09:24 +02:00
Fabien Potencier
783f1679b9 fixed autoloader when Swiftmailer is not installed 2011-06-14 21:57:58 +02:00
Fabien Potencier
f1e8c1bce5 fixed autoloader 2011-06-11 13:58:27 +02:00
Fabien Potencier
f5de854d69 fixed autoloading for tests 2011-06-11 09:20:01 +02:00
Fabien Potencier
28527c7c91 renamed some UniversalClassLoader for better consistency 2011-05-31 09:28:32 +02:00
Fabien Potencier
2291af41c5 added Locale stubs to the autoloader so that people can run Symfony unit tests even if they don't have intl installed 2011-04-28 10:08:16 +02:00
Fabien Potencier
2e79c33725 updated autoload.php.dist 2011-04-22 22:52:52 +02:00
Fabien Potencier
5bd2b53cb8 [ZendBundle] removed the bundle 2011-04-04 12:41:27 +02:00
Jordi Boggiano
3d03cb6761 Added monolog to autoload and vendors script 2011-03-18 12:24:31 +01:00
Kris Wallsmith
33d47be32e [HttpKernel] added an subclass merge extension configuration compiler pass to ensure each bundle's "main" extension is loaded 2011-03-03 13:54:32 +01:00
Kris Wallsmith
1292925702 [AsseticBundle] initial entry of assetic integration 2011-02-13 22:21:30 +01:00
Victor Berchet
935332d0f5 fix autoload 2011-01-27 16:49:02 +01:00
Fabien Potencier
6997fbac0d fixed previous commit 2011-01-27 13:58:21 +01:00
Fabien Potencier
39721f25bd fixed indentation 2010-12-08 08:28:30 +01:00
Jonathan H. Wage
7c47fd77cc Fix DoctrineMongoDBBundle to work with recent changes to Doctrine MongoDB ODM. 2010-12-03 00:06:29 +01:00
Fabien Potencier
b9f33a610e removed code related to Propel support 2010-10-28 14:52:34 +02:00
henrikbjorn
18ba4fd567 changed autoload.php.dist namespace order 2010-10-08 09:54:57 +02:00
Jonathan H. Wage
c0dc01d9b9 Fixing old path to new one. 2010-10-05 09:36:53 +02:00
Fabien Potencier
4cea8276e3 fixed Doctrine data fixtures path 2010-10-05 09:30:24 +02:00
Jonathan H. Wage
ff683a694e Integrating new data fixtures code. 2010-10-05 09:00:33 +02:00
Fabien Potencier
d657adbfa2 removed Symfony\Framework
Things have been moved to Symfony\Component\HttpKernel
and Symfony\Bundle\FrameworkBundle

The kernel configuration namespace was removed and merged
with the main web configuration namespace (kernel:config => web:config,
kernel:test => web:test, and kernel:session => web:session):

Before:
<kernel:config charset="UTF-8" error_handler="null" />

<web:config csrf-secret="xxxxxxxxxx">
    <web:router resource="%kernel.root_dir%/config/routing.xml" />
    <web:validation enabled="true" annotations="true" />
</web:config>

After:
<web:config csrf-secret="xxxxxxxxxx" charset="UTF-8" error-handler="null">
    <web:router resource="%kernel.root_dir%/config/routing.xml" />
    <web:validation enabled="true" annotations="true" />
</web:config>

Renamed classes:

Symfony\{Framework => Bundle\FrameworkBundle}\Cache\Cache
Symfony\{Framework => Bundle\FrameworkBundle}\Client
Symfony\{Framework => Bundle\FrameworkBundle}\Debug\EventDispatcher
Symfony\{Framework => Bundle\FrameworkBundle}\Debug\EventDispatcherTraceableInterface
Symfony\{Framework => Bundle\FrameworkBundle}\EventDispatcher
Symfony\{Framework => Component\HttpFoundation}\UniversalClassLoader
Symfony\{Framework => Component\HttpKernel}\Bundle\Bundle
Symfony\{Framework => Component\HttpKernel}\Bundle\BundleInterface
Symfony\{Framework => Component\HttpKernel}\ClassCollectionLoader
Symfony\{Framework => Component\HttpKernel}\Debug\ErrorException
Symfony\{Framework => Component\HttpKernel}\Debug\ErrorHandler
Symfony\{Bundle\FrameworkBundle => Component\HttpKernel}\Debug\ExceptionListener
Symfony\{Framework => Component\HttpKernel}\Kernel
2010-09-17 12:58:24 +02:00
Jonathan H. Wage
2a0730aaaa Adding mongodb to default autoloader so tests will run. 2010-08-11 20:51:38 +02:00
Fabien Potencier
79808650e9 updated vendors to not rely on Doctrine submodules 2010-07-13 07:36:12 +02:00
Fabien Potencier
da9f36ca86 renamed Symfony\Foundation to Symfony\Framework
In existing applications, you need to updated the autoload.php file, the
XXXKernel file and all XXXBundle classes.
2010-07-09 10:25:54 +02:00
Fabien Potencier
6ba48ff8c1 simplified bootstrap.php 2010-06-30 10:29:27 +02:00
Fabien Potencier
a05a82a892 fixed autoloading for code coverage 2010-06-23 15:40:36 +02:00
Fabien Potencier
6ec9b9966e fixed coding standards for XML and YAML files 2010-06-11 10:06:44 +02:00
Fabien Potencier
aa050e2f08 fixed ZF2 unit tests 2010-06-07 10:09:10 +02:00
Fabien Potencier
a79ad894f9 added a way to run tests that depends on external libraries 2010-06-07 09:24:09 +02:00