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-04-10 15:37:24 +02:00
..
CacheWarmer [DoctrineBridge] Updated the code to use the new registry 2011-10-16 14:57:14 +02:00
DataCollector [DoctrineBridge] Refactored the query sanitization in the collector 2012-01-23 10:57:46 +01:00
DataFixtures [DoctrineBridge] Rename data fixtures loader class 2012-02-11 16:48:09 -05:00
DependencyInjection [DoctrineBridge] Compiler pass for registering event listeners/subscribers 2012-02-23 17:50:43 -05:00
Form [Form] Simplified choice list API 2012-04-10 15:37:24 +02:00
HttpFoundation [DoctrineBridge] Refactor session storage to handler. 2012-03-14 20:27:23 +05:45
Logger [DoctrineBridge][DoctrineBundle] Refactored the DBAL logging 2011-12-16 14:57:00 +01: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] Fixed handling of expanded choice lists, checkboxes and radio buttons with empty values ("") 2012-04-10 15:35:46 +02:00
Validator [DoctrineBridge] Iterator->current() is not the same as current(Iterator) 2012-03-09 10:27:18 -05:00
composer.json merged 2.0 2012-03-11 18:00:10 +01:00
ContainerAwareEventManager.php fixed CS 2012-03-11 18:00:25 +01: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 [DoctrineBridge] fixed some CS 2011-12-13 10:22:12 +01: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