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-09-29 16:16:47 -07:00
..
CacheWarmer [DoctrineBridge] Updated the code to use the new registry 2011-10-16 14:57:14 +02:00
DataCollector fixed CS 2012-05-18 19:42:42 +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 [DoctrineBridge] Require class option for DoctrineType 2012-09-29 16:16:47 -07: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 [DoctrineBridge] Require class option for DoctrineType 2012-09-29 16:16:47 -07:00
Validator [Doctrine Bridge] Added a parameter ignoreNull on Unique entity to allow a nullable value on field. Added Test 2012-08-05 10:35:10 +02: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 fixed CS 2012-07-09 14:54:20 +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