diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 274fd090..3b7e25ad 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -17,4 +17,4 @@ jobs: with: args: --short env: - DOCS_DIR: 'Resources/doc/' + DOCS_DIR: 'docs/' diff --git a/composer.json b/composer.json index 32c2ec8a..20d46c49 100644 --- a/composer.json +++ b/composer.json @@ -62,15 +62,12 @@ "minimum-stability": "stable", "autoload": { "psr-4": { - "Doctrine\\Bundle\\MongoDBBundle\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] + "Doctrine\\Bundle\\MongoDBBundle\\": "src" + } }, "autoload-dev": { "psr-4": { - "Doctrine\\Bundle\\MongoDBBundle\\Tests\\": "Tests" + "Doctrine\\Bundle\\MongoDBBundle\\Tests\\": "tests" } }, "config": { diff --git a/Resources/config/cache_warmer.php b/config/cache_warmer.php similarity index 100% rename from Resources/config/cache_warmer.php rename to config/cache_warmer.php diff --git a/Resources/config/command.php b/config/command.php similarity index 100% rename from Resources/config/command.php rename to config/command.php diff --git a/Resources/config/form.php b/config/form.php similarity index 100% rename from Resources/config/form.php rename to config/form.php diff --git a/Resources/config/logger.php b/config/logger.php similarity index 100% rename from Resources/config/logger.php rename to config/logger.php diff --git a/Resources/config/messenger.php b/config/messenger.php similarity index 100% rename from Resources/config/messenger.php rename to config/messenger.php diff --git a/Resources/config/mongodb.php b/config/mongodb.php similarity index 100% rename from Resources/config/mongodb.php rename to config/mongodb.php diff --git a/Resources/config/profiler.php b/config/profiler.php similarity index 100% rename from Resources/config/profiler.php rename to config/profiler.php diff --git a/Resources/config/schema/mongodb-1.0.xsd b/config/schema/mongodb-1.0.xsd similarity index 100% rename from Resources/config/schema/mongodb-1.0.xsd rename to config/schema/mongodb-1.0.xsd diff --git a/Resources/config/validator.php b/config/validator.php similarity index 100% rename from Resources/config/validator.php rename to config/validator.php diff --git a/Resources/config/value_resolver.php b/config/value_resolver.php similarity index 100% rename from Resources/config/value_resolver.php rename to config/value_resolver.php diff --git a/Resources/doc/.doctor-rst.yaml b/docs/.doctor-rst.yaml similarity index 100% rename from Resources/doc/.doctor-rst.yaml rename to docs/.doctor-rst.yaml diff --git a/Resources/doc/config.rst b/docs/config.rst similarity index 100% rename from Resources/doc/config.rst rename to docs/config.rst diff --git a/Resources/doc/console.rst b/docs/console.rst similarity index 100% rename from Resources/doc/console.rst rename to docs/console.rst diff --git a/Resources/doc/cookbook/registration_form.rst b/docs/cookbook/registration_form.rst similarity index 100% rename from Resources/doc/cookbook/registration_form.rst rename to docs/cookbook/registration_form.rst diff --git a/Resources/doc/events.rst b/docs/events.rst similarity index 100% rename from Resources/doc/events.rst rename to docs/events.rst diff --git a/Resources/doc/first_steps.rst b/docs/first_steps.rst similarity index 100% rename from Resources/doc/first_steps.rst rename to docs/first_steps.rst diff --git a/Resources/doc/form_validation.rst b/docs/form_validation.rst similarity index 100% rename from Resources/doc/form_validation.rst rename to docs/form_validation.rst diff --git a/Resources/doc/index.rst b/docs/index.rst similarity index 100% rename from Resources/doc/index.rst rename to docs/index.rst diff --git a/Resources/doc/installation.rst b/docs/installation.rst similarity index 100% rename from Resources/doc/installation.rst rename to docs/installation.rst diff --git a/Resources/doc/messenger.rst b/docs/messenger.rst similarity index 100% rename from Resources/doc/messenger.rst rename to docs/messenger.rst diff --git a/Resources/doc/security_bundle.rst b/docs/security_bundle.rst similarity index 100% rename from Resources/doc/security_bundle.rst rename to docs/security_bundle.rst diff --git a/phpcs.xml.dist b/phpcs.xml.dist index 6c3005b5..9668c567 100644 --- a/phpcs.xml.dist +++ b/phpcs.xml.dist @@ -11,9 +11,9 @@ - . - - vendor/* + config + src + tests @@ -32,15 +32,15 @@ - Tests/* + tests/* - Tests/* + tests/* - Command/* + src/Command/* diff --git a/phpunit.xml.dist b/phpunit.xml.dist index 4e4480da..078b5428 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -8,11 +8,11 @@ convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" - bootstrap="./Tests/bootstrap.php" + bootstrap="tests/bootstrap.php" > - ./Tests/ + tests @@ -28,13 +28,8 @@ - ./ + src - - ./Resources - ./Tests - ./vendor - diff --git a/psalm-baseline.xml b/psalm-baseline.xml index d33c7f8b..1ae94734 100644 --- a/psalm-baseline.xml +++ b/psalm-baseline.xml @@ -1,11 +1,16 @@ - - + + + + ExpressionLanguage + + + ask - + arrayNode end @@ -16,7 +21,7 @@ children - + GuesserTestType diff --git a/psalm.xml b/psalm.xml index 7fb6a939..dbb27339 100644 --- a/psalm.xml +++ b/psalm.xml @@ -13,21 +13,9 @@ - - - - - - - - - - - - - - - + + + diff --git a/APM/CommandLoggerRegistry.php b/src/APM/CommandLoggerRegistry.php similarity index 100% rename from APM/CommandLoggerRegistry.php rename to src/APM/CommandLoggerRegistry.php diff --git a/APM/PSRCommandLogger.php b/src/APM/PSRCommandLogger.php similarity index 100% rename from APM/PSRCommandLogger.php rename to src/APM/PSRCommandLogger.php diff --git a/APM/StopwatchCommandLogger.php b/src/APM/StopwatchCommandLogger.php similarity index 100% rename from APM/StopwatchCommandLogger.php rename to src/APM/StopwatchCommandLogger.php diff --git a/ArgumentResolver/DocumentValueResolver.php b/src/ArgumentResolver/DocumentValueResolver.php similarity index 100% rename from ArgumentResolver/DocumentValueResolver.php rename to src/ArgumentResolver/DocumentValueResolver.php diff --git a/Attribute/AsDocumentListener.php b/src/Attribute/AsDocumentListener.php similarity index 100% rename from Attribute/AsDocumentListener.php rename to src/Attribute/AsDocumentListener.php diff --git a/Attribute/MapDocument.php b/src/Attribute/MapDocument.php similarity index 100% rename from Attribute/MapDocument.php rename to src/Attribute/MapDocument.php diff --git a/CacheWarmer/HydratorCacheWarmer.php b/src/CacheWarmer/HydratorCacheWarmer.php similarity index 100% rename from CacheWarmer/HydratorCacheWarmer.php rename to src/CacheWarmer/HydratorCacheWarmer.php diff --git a/CacheWarmer/PersistentCollectionCacheWarmer.php b/src/CacheWarmer/PersistentCollectionCacheWarmer.php similarity index 100% rename from CacheWarmer/PersistentCollectionCacheWarmer.php rename to src/CacheWarmer/PersistentCollectionCacheWarmer.php diff --git a/CacheWarmer/ProxyCacheWarmer.php b/src/CacheWarmer/ProxyCacheWarmer.php similarity index 100% rename from CacheWarmer/ProxyCacheWarmer.php rename to src/CacheWarmer/ProxyCacheWarmer.php diff --git a/Command/ClearMetadataCacheDoctrineODMCommand.php b/src/Command/ClearMetadataCacheDoctrineODMCommand.php similarity index 100% rename from Command/ClearMetadataCacheDoctrineODMCommand.php rename to src/Command/ClearMetadataCacheDoctrineODMCommand.php diff --git a/Command/CreateSchemaDoctrineODMCommand.php b/src/Command/CreateSchemaDoctrineODMCommand.php similarity index 100% rename from Command/CreateSchemaDoctrineODMCommand.php rename to src/Command/CreateSchemaDoctrineODMCommand.php diff --git a/Command/DoctrineODMCommand.php b/src/Command/DoctrineODMCommand.php similarity index 100% rename from Command/DoctrineODMCommand.php rename to src/Command/DoctrineODMCommand.php diff --git a/Command/DropSchemaDoctrineODMCommand.php b/src/Command/DropSchemaDoctrineODMCommand.php similarity index 100% rename from Command/DropSchemaDoctrineODMCommand.php rename to src/Command/DropSchemaDoctrineODMCommand.php diff --git a/Command/GenerateHydratorsDoctrineODMCommand.php b/src/Command/GenerateHydratorsDoctrineODMCommand.php similarity index 100% rename from Command/GenerateHydratorsDoctrineODMCommand.php rename to src/Command/GenerateHydratorsDoctrineODMCommand.php diff --git a/Command/GenerateProxiesDoctrineODMCommand.php b/src/Command/GenerateProxiesDoctrineODMCommand.php similarity index 100% rename from Command/GenerateProxiesDoctrineODMCommand.php rename to src/Command/GenerateProxiesDoctrineODMCommand.php diff --git a/Command/InfoDoctrineODMCommand.php b/src/Command/InfoDoctrineODMCommand.php similarity index 100% rename from Command/InfoDoctrineODMCommand.php rename to src/Command/InfoDoctrineODMCommand.php diff --git a/Command/LoadDataFixturesDoctrineODMCommand.php b/src/Command/LoadDataFixturesDoctrineODMCommand.php similarity index 100% rename from Command/LoadDataFixturesDoctrineODMCommand.php rename to src/Command/LoadDataFixturesDoctrineODMCommand.php diff --git a/Command/QueryDoctrineODMCommand.php b/src/Command/QueryDoctrineODMCommand.php similarity index 100% rename from Command/QueryDoctrineODMCommand.php rename to src/Command/QueryDoctrineODMCommand.php diff --git a/Command/ShardDoctrineODMCommand.php b/src/Command/ShardDoctrineODMCommand.php similarity index 100% rename from Command/ShardDoctrineODMCommand.php rename to src/Command/ShardDoctrineODMCommand.php diff --git a/Command/UpdateSchemaDoctrineODMCommand.php b/src/Command/UpdateSchemaDoctrineODMCommand.php similarity index 100% rename from Command/UpdateSchemaDoctrineODMCommand.php rename to src/Command/UpdateSchemaDoctrineODMCommand.php diff --git a/DataCollector/CommandDataCollector.php b/src/DataCollector/CommandDataCollector.php similarity index 100% rename from DataCollector/CommandDataCollector.php rename to src/DataCollector/CommandDataCollector.php diff --git a/DependencyInjection/Compiler/CreateHydratorDirectoryPass.php b/src/DependencyInjection/Compiler/CreateHydratorDirectoryPass.php similarity index 100% rename from DependencyInjection/Compiler/CreateHydratorDirectoryPass.php rename to src/DependencyInjection/Compiler/CreateHydratorDirectoryPass.php diff --git a/DependencyInjection/Compiler/CreateProxyDirectoryPass.php b/src/DependencyInjection/Compiler/CreateProxyDirectoryPass.php similarity index 100% rename from DependencyInjection/Compiler/CreateProxyDirectoryPass.php rename to src/DependencyInjection/Compiler/CreateProxyDirectoryPass.php diff --git a/DependencyInjection/Compiler/DoctrineMongoDBMappingsPass.php b/src/DependencyInjection/Compiler/DoctrineMongoDBMappingsPass.php similarity index 100% rename from DependencyInjection/Compiler/DoctrineMongoDBMappingsPass.php rename to src/DependencyInjection/Compiler/DoctrineMongoDBMappingsPass.php diff --git a/DependencyInjection/Compiler/FixturesCompilerPass.php b/src/DependencyInjection/Compiler/FixturesCompilerPass.php similarity index 100% rename from DependencyInjection/Compiler/FixturesCompilerPass.php rename to src/DependencyInjection/Compiler/FixturesCompilerPass.php diff --git a/DependencyInjection/Compiler/ServiceRepositoryCompilerPass.php b/src/DependencyInjection/Compiler/ServiceRepositoryCompilerPass.php similarity index 100% rename from DependencyInjection/Compiler/ServiceRepositoryCompilerPass.php rename to src/DependencyInjection/Compiler/ServiceRepositoryCompilerPass.php diff --git a/DependencyInjection/Configuration.php b/src/DependencyInjection/Configuration.php similarity index 100% rename from DependencyInjection/Configuration.php rename to src/DependencyInjection/Configuration.php diff --git a/DependencyInjection/DoctrineMongoDBExtension.php b/src/DependencyInjection/DoctrineMongoDBExtension.php similarity index 99% rename from DependencyInjection/DoctrineMongoDBExtension.php rename to src/DependencyInjection/DoctrineMongoDBExtension.php index aac562f5..0d2e9ae6 100644 --- a/DependencyInjection/DoctrineMongoDBExtension.php +++ b/src/DependencyInjection/DoctrineMongoDBExtension.php @@ -63,7 +63,7 @@ class DoctrineMongoDBExtension extends AbstractDoctrineExtension */ public function load(array $configs, ContainerBuilder $container): void { - $loader = new PhpFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config')); + $loader = new PhpFileLoader($container, new FileLocator(__DIR__ . '/../../config')); $configuration = new Configuration(); $config = $this->processConfiguration($configuration, $configs); @@ -558,7 +558,7 @@ public function getNamespace(): string public function getXsdValidationBasePath(): string { - return __DIR__ . '/../Resources/config/schema'; + return __DIR__ . '/../../config/schema'; } /** diff --git a/DoctrineMongoDBBundle.php b/src/DoctrineMongoDBBundle.php similarity index 100% rename from DoctrineMongoDBBundle.php rename to src/DoctrineMongoDBBundle.php diff --git a/Fixture/Fixture.php b/src/Fixture/Fixture.php similarity index 100% rename from Fixture/Fixture.php rename to src/Fixture/Fixture.php diff --git a/Fixture/FixtureGroupInterface.php b/src/Fixture/FixtureGroupInterface.php similarity index 100% rename from Fixture/FixtureGroupInterface.php rename to src/Fixture/FixtureGroupInterface.php diff --git a/Fixture/ODMFixtureInterface.php b/src/Fixture/ODMFixtureInterface.php similarity index 100% rename from Fixture/ODMFixtureInterface.php rename to src/Fixture/ODMFixtureInterface.php diff --git a/Form/ChoiceList/MongoDBQueryBuilderLoader.php b/src/Form/ChoiceList/MongoDBQueryBuilderLoader.php similarity index 100% rename from Form/ChoiceList/MongoDBQueryBuilderLoader.php rename to src/Form/ChoiceList/MongoDBQueryBuilderLoader.php diff --git a/Form/DoctrineMongoDBExtension.php b/src/Form/DoctrineMongoDBExtension.php similarity index 100% rename from Form/DoctrineMongoDBExtension.php rename to src/Form/DoctrineMongoDBExtension.php diff --git a/Form/DoctrineMongoDBTypeGuesser.php b/src/Form/DoctrineMongoDBTypeGuesser.php similarity index 100% rename from Form/DoctrineMongoDBTypeGuesser.php rename to src/Form/DoctrineMongoDBTypeGuesser.php diff --git a/Form/Type/DocumentType.php b/src/Form/Type/DocumentType.php similarity index 100% rename from Form/Type/DocumentType.php rename to src/Form/Type/DocumentType.php diff --git a/Loader/SymfonyFixturesLoader.php b/src/Loader/SymfonyFixturesLoader.php similarity index 100% rename from Loader/SymfonyFixturesLoader.php rename to src/Loader/SymfonyFixturesLoader.php diff --git a/Loader/SymfonyFixturesLoaderInterface.php b/src/Loader/SymfonyFixturesLoaderInterface.php similarity index 100% rename from Loader/SymfonyFixturesLoaderInterface.php rename to src/Loader/SymfonyFixturesLoaderInterface.php diff --git a/ManagerConfigurator.php b/src/ManagerConfigurator.php similarity index 100% rename from ManagerConfigurator.php rename to src/ManagerConfigurator.php diff --git a/ManagerRegistry.php b/src/ManagerRegistry.php similarity index 100% rename from ManagerRegistry.php rename to src/ManagerRegistry.php diff --git a/Mapping/Driver/XmlDriver.php b/src/Mapping/Driver/XmlDriver.php similarity index 100% rename from Mapping/Driver/XmlDriver.php rename to src/Mapping/Driver/XmlDriver.php diff --git a/Repository/ContainerRepositoryFactory.php b/src/Repository/ContainerRepositoryFactory.php similarity index 100% rename from Repository/ContainerRepositoryFactory.php rename to src/Repository/ContainerRepositoryFactory.php diff --git a/Repository/ServiceDocumentRepository.php b/src/Repository/ServiceDocumentRepository.php similarity index 100% rename from Repository/ServiceDocumentRepository.php rename to src/Repository/ServiceDocumentRepository.php diff --git a/Repository/ServiceDocumentRepositoryInterface.php b/src/Repository/ServiceDocumentRepositoryInterface.php similarity index 100% rename from Repository/ServiceDocumentRepositoryInterface.php rename to src/Repository/ServiceDocumentRepositoryInterface.php diff --git a/Repository/ServiceGridFSRepository.php b/src/Repository/ServiceGridFSRepository.php similarity index 100% rename from Repository/ServiceGridFSRepository.php rename to src/Repository/ServiceGridFSRepository.php diff --git a/Repository/ServiceRepositoryTrait.php b/src/Repository/ServiceRepositoryTrait.php similarity index 100% rename from Repository/ServiceRepositoryTrait.php rename to src/Repository/ServiceRepositoryTrait.php diff --git a/Validator/Constraints/Unique.php b/src/Validator/Constraints/Unique.php similarity index 100% rename from Validator/Constraints/Unique.php rename to src/Validator/Constraints/Unique.php diff --git a/Resources/views/Collector/icon.svg b/templates/Collector/icon.svg similarity index 100% rename from Resources/views/Collector/icon.svg rename to templates/Collector/icon.svg diff --git a/Resources/views/Collector/mongodb.html.twig b/templates/Collector/mongodb.html.twig similarity index 100% rename from Resources/views/Collector/mongodb.html.twig rename to templates/Collector/mongodb.html.twig diff --git a/Tests/APM/StopwatchCommandLoggerTest.php b/tests/APM/StopwatchCommandLoggerTest.php similarity index 100% rename from Tests/APM/StopwatchCommandLoggerTest.php rename to tests/APM/StopwatchCommandLoggerTest.php diff --git a/Tests/CacheWarmer/HydratorCacheWarmerTest.php b/tests/CacheWarmer/HydratorCacheWarmerTest.php similarity index 100% rename from Tests/CacheWarmer/HydratorCacheWarmerTest.php rename to tests/CacheWarmer/HydratorCacheWarmerTest.php diff --git a/Tests/CacheWarmer/PersistentCollectionCacheWarmerTest.php b/tests/CacheWarmer/PersistentCollectionCacheWarmerTest.php similarity index 100% rename from Tests/CacheWarmer/PersistentCollectionCacheWarmerTest.php rename to tests/CacheWarmer/PersistentCollectionCacheWarmerTest.php diff --git a/Tests/CacheWarmer/ProxyCacheWarmerTest.php b/tests/CacheWarmer/ProxyCacheWarmerTest.php similarity index 100% rename from Tests/CacheWarmer/ProxyCacheWarmerTest.php rename to tests/CacheWarmer/ProxyCacheWarmerTest.php diff --git a/Tests/Command/CommandTestKernel.php b/tests/Command/CommandTestKernel.php similarity index 100% rename from Tests/Command/CommandTestKernel.php rename to tests/Command/CommandTestKernel.php diff --git a/Tests/Command/InfoDoctrineODMCommandTest.php b/tests/Command/InfoDoctrineODMCommandTest.php similarity index 100% rename from Tests/Command/InfoDoctrineODMCommandTest.php rename to tests/Command/InfoDoctrineODMCommandTest.php diff --git a/Tests/Command/LoadDataFixturesDoctrineODMCommandTest.php b/tests/Command/LoadDataFixturesDoctrineODMCommandTest.php similarity index 100% rename from Tests/Command/LoadDataFixturesDoctrineODMCommandTest.php rename to tests/Command/LoadDataFixturesDoctrineODMCommandTest.php diff --git a/Tests/ContainerTest.php b/tests/ContainerTest.php similarity index 100% rename from Tests/ContainerTest.php rename to tests/ContainerTest.php diff --git a/Tests/DataCollector/CommandDataCollectorTest.php b/tests/DataCollector/CommandDataCollectorTest.php similarity index 100% rename from Tests/DataCollector/CommandDataCollectorTest.php rename to tests/DataCollector/CommandDataCollectorTest.php diff --git a/Tests/DependencyInjection/AbstractMongoDBExtensionTestCase.php b/tests/DependencyInjection/AbstractMongoDBExtensionTestCase.php similarity index 100% rename from Tests/DependencyInjection/AbstractMongoDBExtensionTestCase.php rename to tests/DependencyInjection/AbstractMongoDBExtensionTestCase.php diff --git a/Tests/DependencyInjection/ConfigurationTest.php b/tests/DependencyInjection/ConfigurationTest.php similarity index 100% rename from Tests/DependencyInjection/ConfigurationTest.php rename to tests/DependencyInjection/ConfigurationTest.php diff --git a/Tests/DependencyInjection/DoctrineMongoDBExtensionTest.php b/tests/DependencyInjection/DoctrineMongoDBExtensionTest.php similarity index 100% rename from Tests/DependencyInjection/DoctrineMongoDBExtensionTest.php rename to tests/DependencyInjection/DoctrineMongoDBExtensionTest.php diff --git a/Tests/DependencyInjection/Fixtures/Bundles/AttributesBundle/AttributesBundle.php b/tests/DependencyInjection/Fixtures/Bundles/AttributesBundle/AttributesBundle.php similarity index 100% rename from Tests/DependencyInjection/Fixtures/Bundles/AttributesBundle/AttributesBundle.php rename to tests/DependencyInjection/Fixtures/Bundles/AttributesBundle/AttributesBundle.php diff --git a/Tests/DependencyInjection/Fixtures/Bundles/AttributesBundle/Document/TestDocument.php b/tests/DependencyInjection/Fixtures/Bundles/AttributesBundle/Document/TestDocument.php similarity index 100% rename from Tests/DependencyInjection/Fixtures/Bundles/AttributesBundle/Document/TestDocument.php rename to tests/DependencyInjection/Fixtures/Bundles/AttributesBundle/Document/TestDocument.php diff --git a/Tests/DependencyInjection/Fixtures/Bundles/DocumentListenerBundle/Document/TestDocument.php b/tests/DependencyInjection/Fixtures/Bundles/DocumentListenerBundle/Document/TestDocument.php similarity index 100% rename from Tests/DependencyInjection/Fixtures/Bundles/DocumentListenerBundle/Document/TestDocument.php rename to tests/DependencyInjection/Fixtures/Bundles/DocumentListenerBundle/Document/TestDocument.php diff --git a/Tests/DependencyInjection/Fixtures/Bundles/DocumentListenerBundle/DocumentListenerBundle.php b/tests/DependencyInjection/Fixtures/Bundles/DocumentListenerBundle/DocumentListenerBundle.php similarity index 100% rename from Tests/DependencyInjection/Fixtures/Bundles/DocumentListenerBundle/DocumentListenerBundle.php rename to tests/DependencyInjection/Fixtures/Bundles/DocumentListenerBundle/DocumentListenerBundle.php diff --git a/Tests/DependencyInjection/Fixtures/Bundles/DocumentListenerBundle/EventListener/TestAttributeListener.php b/tests/DependencyInjection/Fixtures/Bundles/DocumentListenerBundle/EventListener/TestAttributeListener.php similarity index 100% rename from Tests/DependencyInjection/Fixtures/Bundles/DocumentListenerBundle/EventListener/TestAttributeListener.php rename to tests/DependencyInjection/Fixtures/Bundles/DocumentListenerBundle/EventListener/TestAttributeListener.php diff --git a/Tests/DependencyInjection/Fixtures/Bundles/NewXmlBundle/config/doctrine/mapping.mongodb.xml b/tests/DependencyInjection/Fixtures/Bundles/NewXmlBundle/config/doctrine/mapping.mongodb.xml similarity index 100% rename from Tests/DependencyInjection/Fixtures/Bundles/NewXmlBundle/config/doctrine/mapping.mongodb.xml rename to tests/DependencyInjection/Fixtures/Bundles/NewXmlBundle/config/doctrine/mapping.mongodb.xml diff --git a/Tests/DependencyInjection/Fixtures/Bundles/NewXmlBundle/src/Document/TestDocument.php b/tests/DependencyInjection/Fixtures/Bundles/NewXmlBundle/src/Document/TestDocument.php similarity index 100% rename from Tests/DependencyInjection/Fixtures/Bundles/NewXmlBundle/src/Document/TestDocument.php rename to tests/DependencyInjection/Fixtures/Bundles/NewXmlBundle/src/Document/TestDocument.php diff --git a/Tests/DependencyInjection/Fixtures/Bundles/NewXmlBundle/src/NewXmlBundle.php b/tests/DependencyInjection/Fixtures/Bundles/NewXmlBundle/src/NewXmlBundle.php similarity index 100% rename from Tests/DependencyInjection/Fixtures/Bundles/NewXmlBundle/src/NewXmlBundle.php rename to tests/DependencyInjection/Fixtures/Bundles/NewXmlBundle/src/NewXmlBundle.php diff --git a/Tests/DependencyInjection/Fixtures/Bundles/OtherXmlBundle/Document/TestDocument.php b/tests/DependencyInjection/Fixtures/Bundles/OtherXmlBundle/Document/TestDocument.php similarity index 100% rename from Tests/DependencyInjection/Fixtures/Bundles/OtherXmlBundle/Document/TestDocument.php rename to tests/DependencyInjection/Fixtures/Bundles/OtherXmlBundle/Document/TestDocument.php diff --git a/Tests/DependencyInjection/Fixtures/Bundles/OtherXmlBundle/OtherXmlBundle.php b/tests/DependencyInjection/Fixtures/Bundles/OtherXmlBundle/OtherXmlBundle.php similarity index 100% rename from Tests/DependencyInjection/Fixtures/Bundles/OtherXmlBundle/OtherXmlBundle.php rename to tests/DependencyInjection/Fixtures/Bundles/OtherXmlBundle/OtherXmlBundle.php diff --git a/Tests/DependencyInjection/Fixtures/Bundles/OtherXmlBundle/Resources/config/doctrine/mapping.mongodb.xml b/tests/DependencyInjection/Fixtures/Bundles/OtherXmlBundle/Resources/config/doctrine/mapping.mongodb.xml similarity index 100% rename from Tests/DependencyInjection/Fixtures/Bundles/OtherXmlBundle/Resources/config/doctrine/mapping.mongodb.xml rename to tests/DependencyInjection/Fixtures/Bundles/OtherXmlBundle/Resources/config/doctrine/mapping.mongodb.xml diff --git a/Tests/DependencyInjection/Fixtures/Bundles/RepositoryServiceBundle/Document/TestCustomClassRepoDocument.php b/tests/DependencyInjection/Fixtures/Bundles/RepositoryServiceBundle/Document/TestCustomClassRepoDocument.php similarity index 100% rename from Tests/DependencyInjection/Fixtures/Bundles/RepositoryServiceBundle/Document/TestCustomClassRepoDocument.php rename to tests/DependencyInjection/Fixtures/Bundles/RepositoryServiceBundle/Document/TestCustomClassRepoDocument.php diff --git a/Tests/DependencyInjection/Fixtures/Bundles/RepositoryServiceBundle/Document/TestCustomServiceRepoDocument.php b/tests/DependencyInjection/Fixtures/Bundles/RepositoryServiceBundle/Document/TestCustomServiceRepoDocument.php similarity index 100% rename from Tests/DependencyInjection/Fixtures/Bundles/RepositoryServiceBundle/Document/TestCustomServiceRepoDocument.php rename to tests/DependencyInjection/Fixtures/Bundles/RepositoryServiceBundle/Document/TestCustomServiceRepoDocument.php diff --git a/Tests/DependencyInjection/Fixtures/Bundles/RepositoryServiceBundle/Document/TestCustomServiceRepoFile.php b/tests/DependencyInjection/Fixtures/Bundles/RepositoryServiceBundle/Document/TestCustomServiceRepoFile.php similarity index 100% rename from Tests/DependencyInjection/Fixtures/Bundles/RepositoryServiceBundle/Document/TestCustomServiceRepoFile.php rename to tests/DependencyInjection/Fixtures/Bundles/RepositoryServiceBundle/Document/TestCustomServiceRepoFile.php diff --git a/Tests/DependencyInjection/Fixtures/Bundles/RepositoryServiceBundle/Document/TestDefaultRepoDocument.php b/tests/DependencyInjection/Fixtures/Bundles/RepositoryServiceBundle/Document/TestDefaultRepoDocument.php similarity index 100% rename from Tests/DependencyInjection/Fixtures/Bundles/RepositoryServiceBundle/Document/TestDefaultRepoDocument.php rename to tests/DependencyInjection/Fixtures/Bundles/RepositoryServiceBundle/Document/TestDefaultRepoDocument.php diff --git a/Tests/DependencyInjection/Fixtures/Bundles/RepositoryServiceBundle/Document/TestDefaultRepoFile.php b/tests/DependencyInjection/Fixtures/Bundles/RepositoryServiceBundle/Document/TestDefaultRepoFile.php similarity index 100% rename from Tests/DependencyInjection/Fixtures/Bundles/RepositoryServiceBundle/Document/TestDefaultRepoFile.php rename to tests/DependencyInjection/Fixtures/Bundles/RepositoryServiceBundle/Document/TestDefaultRepoFile.php diff --git a/Tests/DependencyInjection/Fixtures/Bundles/RepositoryServiceBundle/Document/TestUnmappedDocument.php b/tests/DependencyInjection/Fixtures/Bundles/RepositoryServiceBundle/Document/TestUnmappedDocument.php similarity index 100% rename from Tests/DependencyInjection/Fixtures/Bundles/RepositoryServiceBundle/Document/TestUnmappedDocument.php rename to tests/DependencyInjection/Fixtures/Bundles/RepositoryServiceBundle/Document/TestUnmappedDocument.php diff --git a/Tests/DependencyInjection/Fixtures/Bundles/RepositoryServiceBundle/Repository/TestCustomClassRepoRepository.php b/tests/DependencyInjection/Fixtures/Bundles/RepositoryServiceBundle/Repository/TestCustomClassRepoRepository.php similarity index 100% rename from Tests/DependencyInjection/Fixtures/Bundles/RepositoryServiceBundle/Repository/TestCustomClassRepoRepository.php rename to tests/DependencyInjection/Fixtures/Bundles/RepositoryServiceBundle/Repository/TestCustomClassRepoRepository.php diff --git a/Tests/DependencyInjection/Fixtures/Bundles/RepositoryServiceBundle/Repository/TestCustomServiceRepoDocumentRepository.php b/tests/DependencyInjection/Fixtures/Bundles/RepositoryServiceBundle/Repository/TestCustomServiceRepoDocumentRepository.php similarity index 100% rename from Tests/DependencyInjection/Fixtures/Bundles/RepositoryServiceBundle/Repository/TestCustomServiceRepoDocumentRepository.php rename to tests/DependencyInjection/Fixtures/Bundles/RepositoryServiceBundle/Repository/TestCustomServiceRepoDocumentRepository.php diff --git a/Tests/DependencyInjection/Fixtures/Bundles/RepositoryServiceBundle/Repository/TestCustomServiceRepoGridFSRepository.php b/tests/DependencyInjection/Fixtures/Bundles/RepositoryServiceBundle/Repository/TestCustomServiceRepoGridFSRepository.php similarity index 100% rename from Tests/DependencyInjection/Fixtures/Bundles/RepositoryServiceBundle/Repository/TestCustomServiceRepoGridFSRepository.php rename to tests/DependencyInjection/Fixtures/Bundles/RepositoryServiceBundle/Repository/TestCustomServiceRepoGridFSRepository.php diff --git a/Tests/DependencyInjection/Fixtures/Bundles/RepositoryServiceBundle/Repository/TestUnmappedDocumentRepository.php b/tests/DependencyInjection/Fixtures/Bundles/RepositoryServiceBundle/Repository/TestUnmappedDocumentRepository.php similarity index 100% rename from Tests/DependencyInjection/Fixtures/Bundles/RepositoryServiceBundle/Repository/TestUnmappedDocumentRepository.php rename to tests/DependencyInjection/Fixtures/Bundles/RepositoryServiceBundle/Repository/TestUnmappedDocumentRepository.php diff --git a/Tests/DependencyInjection/Fixtures/Bundles/RepositoryServiceBundle/RepositoryServiceBundle.php b/tests/DependencyInjection/Fixtures/Bundles/RepositoryServiceBundle/RepositoryServiceBundle.php similarity index 100% rename from Tests/DependencyInjection/Fixtures/Bundles/RepositoryServiceBundle/RepositoryServiceBundle.php rename to tests/DependencyInjection/Fixtures/Bundles/RepositoryServiceBundle/RepositoryServiceBundle.php diff --git a/Tests/DependencyInjection/Fixtures/Bundles/XmlBundle/Document/TestDocument.php b/tests/DependencyInjection/Fixtures/Bundles/XmlBundle/Document/TestDocument.php similarity index 100% rename from Tests/DependencyInjection/Fixtures/Bundles/XmlBundle/Document/TestDocument.php rename to tests/DependencyInjection/Fixtures/Bundles/XmlBundle/Document/TestDocument.php diff --git a/Tests/DependencyInjection/Fixtures/Bundles/XmlBundle/Resources/config/doctrine/mapping.mongodb.xml b/tests/DependencyInjection/Fixtures/Bundles/XmlBundle/Resources/config/doctrine/mapping.mongodb.xml similarity index 100% rename from Tests/DependencyInjection/Fixtures/Bundles/XmlBundle/Resources/config/doctrine/mapping.mongodb.xml rename to tests/DependencyInjection/Fixtures/Bundles/XmlBundle/Resources/config/doctrine/mapping.mongodb.xml diff --git a/Tests/DependencyInjection/Fixtures/Bundles/XmlBundle/XmlBundle.php b/tests/DependencyInjection/Fixtures/Bundles/XmlBundle/XmlBundle.php similarity index 100% rename from Tests/DependencyInjection/Fixtures/Bundles/XmlBundle/XmlBundle.php rename to tests/DependencyInjection/Fixtures/Bundles/XmlBundle/XmlBundle.php diff --git a/Tests/DependencyInjection/Fixtures/TestKernel.php b/tests/DependencyInjection/Fixtures/TestKernel.php similarity index 100% rename from Tests/DependencyInjection/Fixtures/TestKernel.php rename to tests/DependencyInjection/Fixtures/TestKernel.php diff --git a/Tests/DependencyInjection/Fixtures/config/xml/full.xml b/tests/DependencyInjection/Fixtures/config/xml/full.xml similarity index 100% rename from Tests/DependencyInjection/Fixtures/config/xml/full.xml rename to tests/DependencyInjection/Fixtures/config/xml/full.xml diff --git a/Tests/DependencyInjection/Fixtures/config/xml/mongodb_service_multiple_connections.xml b/tests/DependencyInjection/Fixtures/config/xml/mongodb_service_multiple_connections.xml similarity index 100% rename from Tests/DependencyInjection/Fixtures/config/xml/mongodb_service_multiple_connections.xml rename to tests/DependencyInjection/Fixtures/config/xml/mongodb_service_multiple_connections.xml diff --git a/Tests/DependencyInjection/Fixtures/config/xml/mongodb_service_simple_single_connection.xml b/tests/DependencyInjection/Fixtures/config/xml/mongodb_service_simple_single_connection.xml similarity index 100% rename from Tests/DependencyInjection/Fixtures/config/xml/mongodb_service_simple_single_connection.xml rename to tests/DependencyInjection/Fixtures/config/xml/mongodb_service_simple_single_connection.xml diff --git a/Tests/DependencyInjection/Fixtures/config/xml/mongodb_service_single_connection.xml b/tests/DependencyInjection/Fixtures/config/xml/mongodb_service_single_connection.xml similarity index 100% rename from Tests/DependencyInjection/Fixtures/config/xml/mongodb_service_single_connection.xml rename to tests/DependencyInjection/Fixtures/config/xml/mongodb_service_single_connection.xml diff --git a/Tests/DependencyInjection/Fixtures/config/xml/odm_filters.xml b/tests/DependencyInjection/Fixtures/config/xml/odm_filters.xml similarity index 100% rename from Tests/DependencyInjection/Fixtures/config/xml/odm_filters.xml rename to tests/DependencyInjection/Fixtures/config/xml/odm_filters.xml diff --git a/Tests/DependencyInjection/Fixtures/config/xml/odm_imports.xml b/tests/DependencyInjection/Fixtures/config/xml/odm_imports.xml similarity index 100% rename from Tests/DependencyInjection/Fixtures/config/xml/odm_imports.xml rename to tests/DependencyInjection/Fixtures/config/xml/odm_imports.xml diff --git a/Tests/DependencyInjection/Fixtures/config/xml/odm_imports_import.xml b/tests/DependencyInjection/Fixtures/config/xml/odm_imports_import.xml similarity index 100% rename from Tests/DependencyInjection/Fixtures/config/xml/odm_imports_import.xml rename to tests/DependencyInjection/Fixtures/config/xml/odm_imports_import.xml diff --git a/Tests/DependencyInjection/Fixtures/config/xml/odm_resolve_target_document.xml b/tests/DependencyInjection/Fixtures/config/xml/odm_resolve_target_document.xml similarity index 100% rename from Tests/DependencyInjection/Fixtures/config/xml/odm_resolve_target_document.xml rename to tests/DependencyInjection/Fixtures/config/xml/odm_resolve_target_document.xml diff --git a/Tests/DependencyInjection/Fixtures/config/xml/odm_types.xml b/tests/DependencyInjection/Fixtures/config/xml/odm_types.xml similarity index 100% rename from Tests/DependencyInjection/Fixtures/config/xml/odm_types.xml rename to tests/DependencyInjection/Fixtures/config/xml/odm_types.xml diff --git a/Tests/DependencyInjection/Fixtures/config/yml/full.yml b/tests/DependencyInjection/Fixtures/config/yml/full.yml similarity index 100% rename from Tests/DependencyInjection/Fixtures/config/yml/full.yml rename to tests/DependencyInjection/Fixtures/config/yml/full.yml diff --git a/Tests/DependencyInjection/Fixtures/config/yml/mongodb_service_multiple_connections.yml b/tests/DependencyInjection/Fixtures/config/yml/mongodb_service_multiple_connections.yml similarity index 100% rename from Tests/DependencyInjection/Fixtures/config/yml/mongodb_service_multiple_connections.yml rename to tests/DependencyInjection/Fixtures/config/yml/mongodb_service_multiple_connections.yml diff --git a/Tests/DependencyInjection/Fixtures/config/yml/mongodb_service_simple_single_connection.yml b/tests/DependencyInjection/Fixtures/config/yml/mongodb_service_simple_single_connection.yml similarity index 100% rename from Tests/DependencyInjection/Fixtures/config/yml/mongodb_service_simple_single_connection.yml rename to tests/DependencyInjection/Fixtures/config/yml/mongodb_service_simple_single_connection.yml diff --git a/Tests/DependencyInjection/Fixtures/config/yml/mongodb_service_single_connection.yml b/tests/DependencyInjection/Fixtures/config/yml/mongodb_service_single_connection.yml similarity index 100% rename from Tests/DependencyInjection/Fixtures/config/yml/mongodb_service_single_connection.yml rename to tests/DependencyInjection/Fixtures/config/yml/mongodb_service_single_connection.yml diff --git a/Tests/DependencyInjection/Fixtures/config/yml/odm_filters.yml b/tests/DependencyInjection/Fixtures/config/yml/odm_filters.yml similarity index 100% rename from Tests/DependencyInjection/Fixtures/config/yml/odm_filters.yml rename to tests/DependencyInjection/Fixtures/config/yml/odm_filters.yml diff --git a/Tests/DependencyInjection/Fixtures/config/yml/odm_imports.yml b/tests/DependencyInjection/Fixtures/config/yml/odm_imports.yml similarity index 100% rename from Tests/DependencyInjection/Fixtures/config/yml/odm_imports.yml rename to tests/DependencyInjection/Fixtures/config/yml/odm_imports.yml diff --git a/Tests/DependencyInjection/Fixtures/config/yml/odm_imports_import.yml b/tests/DependencyInjection/Fixtures/config/yml/odm_imports_import.yml similarity index 100% rename from Tests/DependencyInjection/Fixtures/config/yml/odm_imports_import.yml rename to tests/DependencyInjection/Fixtures/config/yml/odm_imports_import.yml diff --git a/Tests/DependencyInjection/Fixtures/config/yml/odm_resolve_target_document.yml b/tests/DependencyInjection/Fixtures/config/yml/odm_resolve_target_document.yml similarity index 100% rename from Tests/DependencyInjection/Fixtures/config/yml/odm_resolve_target_document.yml rename to tests/DependencyInjection/Fixtures/config/yml/odm_resolve_target_document.yml diff --git a/Tests/DependencyInjection/Fixtures/config/yml/odm_types.yml b/tests/DependencyInjection/Fixtures/config/yml/odm_types.yml similarity index 100% rename from Tests/DependencyInjection/Fixtures/config/yml/odm_types.yml rename to tests/DependencyInjection/Fixtures/config/yml/odm_types.yml diff --git a/Tests/DependencyInjection/XmlMongoDBExtensionTest.php b/tests/DependencyInjection/XmlMongoDBExtensionTest.php similarity index 100% rename from Tests/DependencyInjection/XmlMongoDBExtensionTest.php rename to tests/DependencyInjection/XmlMongoDBExtensionTest.php diff --git a/Tests/DependencyInjection/YamlMongoDBExtensionTest.php b/tests/DependencyInjection/YamlMongoDBExtensionTest.php similarity index 100% rename from Tests/DependencyInjection/YamlMongoDBExtensionTest.php rename to tests/DependencyInjection/YamlMongoDBExtensionTest.php diff --git a/Tests/DocumentValueResolverFunctionalTest.php b/tests/DocumentValueResolverFunctionalTest.php similarity index 100% rename from Tests/DocumentValueResolverFunctionalTest.php rename to tests/DocumentValueResolverFunctionalTest.php diff --git a/Tests/FixtureIntegrationTest.php b/tests/FixtureIntegrationTest.php similarity index 100% rename from Tests/FixtureIntegrationTest.php rename to tests/FixtureIntegrationTest.php diff --git a/Tests/Fixtures/Cache/Collections.php b/tests/Fixtures/Cache/Collections.php similarity index 100% rename from Tests/Fixtures/Cache/Collections.php rename to tests/Fixtures/Cache/Collections.php diff --git a/Tests/Fixtures/CommandBundle/CommandBundle.php b/tests/Fixtures/CommandBundle/CommandBundle.php similarity index 100% rename from Tests/Fixtures/CommandBundle/CommandBundle.php rename to tests/Fixtures/CommandBundle/CommandBundle.php diff --git a/Tests/Fixtures/CommandBundle/DataFixtures/OtherFixtures.php b/tests/Fixtures/CommandBundle/DataFixtures/OtherFixtures.php similarity index 100% rename from Tests/Fixtures/CommandBundle/DataFixtures/OtherFixtures.php rename to tests/Fixtures/CommandBundle/DataFixtures/OtherFixtures.php diff --git a/Tests/Fixtures/CommandBundle/DataFixtures/UserFixtures.php b/tests/Fixtures/CommandBundle/DataFixtures/UserFixtures.php similarity index 100% rename from Tests/Fixtures/CommandBundle/DataFixtures/UserFixtures.php rename to tests/Fixtures/CommandBundle/DataFixtures/UserFixtures.php diff --git a/Tests/Fixtures/CommandBundle/Document/User.php b/tests/Fixtures/CommandBundle/Document/User.php similarity index 100% rename from Tests/Fixtures/CommandBundle/Document/User.php rename to tests/Fixtures/CommandBundle/Document/User.php diff --git a/Tests/Fixtures/DataCollector/Category.php b/tests/Fixtures/DataCollector/Category.php similarity index 100% rename from Tests/Fixtures/DataCollector/Category.php rename to tests/Fixtures/DataCollector/Category.php diff --git a/Tests/Fixtures/Filter/BasicFilter.php b/tests/Fixtures/Filter/BasicFilter.php similarity index 100% rename from Tests/Fixtures/Filter/BasicFilter.php rename to tests/Fixtures/Filter/BasicFilter.php diff --git a/Tests/Fixtures/Filter/ComplexFilter.php b/tests/Fixtures/Filter/ComplexFilter.php similarity index 100% rename from Tests/Fixtures/Filter/ComplexFilter.php rename to tests/Fixtures/Filter/ComplexFilter.php diff --git a/Tests/Fixtures/Filter/DisabledFilter.php b/tests/Fixtures/Filter/DisabledFilter.php similarity index 100% rename from Tests/Fixtures/Filter/DisabledFilter.php rename to tests/Fixtures/Filter/DisabledFilter.php diff --git a/Tests/Fixtures/FooBundle/Controller/DocumentValueResolverController.php b/tests/Fixtures/FooBundle/Controller/DocumentValueResolverController.php similarity index 100% rename from Tests/Fixtures/FooBundle/Controller/DocumentValueResolverController.php rename to tests/Fixtures/FooBundle/Controller/DocumentValueResolverController.php diff --git a/Tests/Fixtures/FooBundle/DataFixtures/DependentOnRequiredConstructorArgsFixtures.php b/tests/Fixtures/FooBundle/DataFixtures/DependentOnRequiredConstructorArgsFixtures.php similarity index 100% rename from Tests/Fixtures/FooBundle/DataFixtures/DependentOnRequiredConstructorArgsFixtures.php rename to tests/Fixtures/FooBundle/DataFixtures/DependentOnRequiredConstructorArgsFixtures.php diff --git a/Tests/Fixtures/FooBundle/DataFixtures/OtherFixtures.php b/tests/Fixtures/FooBundle/DataFixtures/OtherFixtures.php similarity index 100% rename from Tests/Fixtures/FooBundle/DataFixtures/OtherFixtures.php rename to tests/Fixtures/FooBundle/DataFixtures/OtherFixtures.php diff --git a/Tests/Fixtures/FooBundle/DataFixtures/RequiredConstructorArgsFixtures.php b/tests/Fixtures/FooBundle/DataFixtures/RequiredConstructorArgsFixtures.php similarity index 100% rename from Tests/Fixtures/FooBundle/DataFixtures/RequiredConstructorArgsFixtures.php rename to tests/Fixtures/FooBundle/DataFixtures/RequiredConstructorArgsFixtures.php diff --git a/Tests/Fixtures/FooBundle/DataFixtures/WithDependenciesFixtures.php b/tests/Fixtures/FooBundle/DataFixtures/WithDependenciesFixtures.php similarity index 100% rename from Tests/Fixtures/FooBundle/DataFixtures/WithDependenciesFixtures.php rename to tests/Fixtures/FooBundle/DataFixtures/WithDependenciesFixtures.php diff --git a/Tests/Fixtures/FooBundle/Document/User.php b/tests/Fixtures/FooBundle/Document/User.php similarity index 100% rename from Tests/Fixtures/FooBundle/Document/User.php rename to tests/Fixtures/FooBundle/Document/User.php diff --git a/Tests/Fixtures/FooBundle/FooBundle.php b/tests/Fixtures/FooBundle/FooBundle.php similarity index 100% rename from Tests/Fixtures/FooBundle/FooBundle.php rename to tests/Fixtures/FooBundle/FooBundle.php diff --git a/Tests/Fixtures/FooBundle/config/services.php b/tests/Fixtures/FooBundle/config/services.php similarity index 100% rename from Tests/Fixtures/FooBundle/config/services.php rename to tests/Fixtures/FooBundle/config/services.php diff --git a/Tests/Fixtures/Form/Category.php b/tests/Fixtures/Form/Category.php similarity index 100% rename from Tests/Fixtures/Form/Category.php rename to tests/Fixtures/Form/Category.php diff --git a/Tests/Fixtures/Form/Document.php b/tests/Fixtures/Form/Document.php similarity index 100% rename from Tests/Fixtures/Form/Document.php rename to tests/Fixtures/Form/Document.php diff --git a/Tests/Fixtures/Form/Guesser.php b/tests/Fixtures/Form/Guesser.php similarity index 100% rename from Tests/Fixtures/Form/Guesser.php rename to tests/Fixtures/Form/Guesser.php diff --git a/Tests/Fixtures/Repository/CustomGridFSRepository.php b/tests/Fixtures/Repository/CustomGridFSRepository.php similarity index 100% rename from Tests/Fixtures/Repository/CustomGridFSRepository.php rename to tests/Fixtures/Repository/CustomGridFSRepository.php diff --git a/Tests/Fixtures/Repository/CustomRepository.php b/tests/Fixtures/Repository/CustomRepository.php similarity index 100% rename from Tests/Fixtures/Repository/CustomRepository.php rename to tests/Fixtures/Repository/CustomRepository.php diff --git a/Tests/Fixtures/Security/User.php b/tests/Fixtures/Security/User.php similarity index 100% rename from Tests/Fixtures/Security/User.php rename to tests/Fixtures/Security/User.php diff --git a/Tests/Fixtures/Validator/Document.php b/tests/Fixtures/Validator/Document.php similarity index 100% rename from Tests/Fixtures/Validator/Document.php rename to tests/Fixtures/Validator/Document.php diff --git a/Tests/Form/Type/DocumentTypeTest.php b/tests/Form/Type/DocumentTypeTest.php similarity index 100% rename from Tests/Form/Type/DocumentTypeTest.php rename to tests/Form/Type/DocumentTypeTest.php diff --git a/Tests/Form/Type/GuesserTestType.php b/tests/Form/Type/GuesserTestType.php similarity index 100% rename from Tests/Form/Type/GuesserTestType.php rename to tests/Form/Type/GuesserTestType.php diff --git a/Tests/Form/Type/TypeGuesserTest.php b/tests/Form/Type/TypeGuesserTest.php similarity index 100% rename from Tests/Form/Type/TypeGuesserTest.php rename to tests/Form/Type/TypeGuesserTest.php diff --git a/Tests/Mapping/Driver/AbstractDriverTestCase.php b/tests/Mapping/Driver/AbstractDriverTestCase.php similarity index 100% rename from Tests/Mapping/Driver/AbstractDriverTestCase.php rename to tests/Mapping/Driver/AbstractDriverTestCase.php diff --git a/Tests/Mapping/Driver/Fixtures/xml/Foo.Bar.mongodb.xml b/tests/Mapping/Driver/Fixtures/xml/Foo.Bar.mongodb.xml similarity index 100% rename from Tests/Mapping/Driver/Fixtures/xml/Foo.Bar.mongodb.xml rename to tests/Mapping/Driver/Fixtures/xml/Foo.Bar.mongodb.xml diff --git a/Tests/Mapping/Driver/Fixtures/xml/Foo.mongodb.xml b/tests/Mapping/Driver/Fixtures/xml/Foo.mongodb.xml similarity index 100% rename from Tests/Mapping/Driver/Fixtures/xml/Foo.mongodb.xml rename to tests/Mapping/Driver/Fixtures/xml/Foo.mongodb.xml diff --git a/Tests/Mapping/Driver/XmlDriverTest.php b/tests/Mapping/Driver/XmlDriverTest.php similarity index 100% rename from Tests/Mapping/Driver/XmlDriverTest.php rename to tests/Mapping/Driver/XmlDriverTest.php diff --git a/Tests/Repository/ContainerRepositoryFactoryTest.php b/tests/Repository/ContainerRepositoryFactoryTest.php similarity index 100% rename from Tests/Repository/ContainerRepositoryFactoryTest.php rename to tests/Repository/ContainerRepositoryFactoryTest.php diff --git a/Tests/ServiceRepositoryTest.php b/tests/ServiceRepositoryTest.php similarity index 100% rename from Tests/ServiceRepositoryTest.php rename to tests/ServiceRepositoryTest.php diff --git a/Tests/TestCase.php b/tests/TestCase.php similarity index 100% rename from Tests/TestCase.php rename to tests/TestCase.php diff --git a/Tests/Validator/Constraints/UniqueTest.php b/tests/Validator/Constraints/UniqueTest.php similarity index 100% rename from Tests/Validator/Constraints/UniqueTest.php rename to tests/Validator/Constraints/UniqueTest.php diff --git a/Tests/bootstrap.php b/tests/bootstrap.php similarity index 100% rename from Tests/bootstrap.php rename to tests/bootstrap.php