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/Bridge/Doctrine
2012-11-15 16:44:00 +01:00
..
CacheWarmer [DoctrineBridge] Updated the code to use the new registry 2011-10-16 14:57:14 +02:00
DataCollector fixed stringification of array objects in RequestDataCollector (closes #5295) 2012-09-21 08:32:55 +02:00
DataFixtures [DoctrineBridge] Rename data fixtures loader class 2012-02-11 16:48:09 -05:00
DependencyInjection Added support to redis, wincache and zend data cache. 2012-08-09 15:02:27 -04:00
Form Force loader to be null or a EntityLoaderInterface 2012-11-15 16:44:00 +01:00
HttpFoundation fixed phpdoc @param alignment 2012-05-15 22:19:31 +02:00
Logger [DoctrineBridge] Fix log of non utf8 data 2012-08-03 10:23:47 +02:00
Security/User [DoctrineBridge][Security] Fixes bug that prevents repository's refreshUser from being called 2012-02-21 13:38:07 +01:00
Tests [Form] Created test for DoctrineOrmTypeGuesser 2012-10-20 12:37:21 +02:00
Validator Merge branch '2.0' into 2.1 2012-11-08 18:02:05 +01:00
.gitattributes Fix export-ignore on Windows 2012-11-08 10:51:48 +01:00
CHANGELOG.md [DoctrineBridge] Fix log of non utf8 data 2012-08-03 10:23:47 +02:00
composer.json replaced self.version by 2.1.* in composer.json files 2012-09-10 12:53:42 +02:00
ContainerAwareEventManager.php fixed CS 2012-05-18 19:42:42 +02:00
LICENSE added missing LICENSE files 2012-05-18 19:00:00 +02:00
ManagerRegistry.php fixed getting the alias for a namespace 2011-09-25 14:23:16 +02:00
phpunit.xml.dist moved component and bridge unit tests to the src/ directory 2012-03-29 08:37:22 +02:00
README.md fixed typo in the previous commit 2012-03-29 08:41:52 +02:00
RegistryInterface.php added missing use statment (closes #5825) 2012-10-24 17:10:37 +02:00

Doctrine Bridge

Provides integration for Doctrine with various Symfony2 components.

Resources

You can run the unit tests with the following command:

phpunit -c src/Symfony/Bridge/Doctrine/

If you also want to run the unit tests that depend on other Symfony Components, declare the following environment variables before running PHPUnit:

export DOCTRINE_COMMON=../path/to/doctrine-common
export DOCTRINE_DBAL=../path/to/doctrine-dbal
export DOCTRINE_ORM=../path/to/doctrine
export DOCTRINE_FIXTURES=../path/to/doctrine-fixtures
export SYMFONY_HTTP_FOUNDATION=../path/to/HttpFoundation
export SYMFONY_DEPENDENCY_INJECTION=../path/to/DependencyInjection
export SYMFONY_FORM=../path/to/Form
export SYMFONY_SECURITY=../path/to/Security
export SYMFONY_VALIDATOR=../path/to/Validator
export SYMFONY_HTTP_KERNEL=../path/to/HttpKernel
export SYMFONY_EVENT_DISPATCHER=../path/to/EventDispatcher