├── .editorconfig ├── .github └── workflows │ ├── lint.yml │ └── tests.yml ├── .gitignore ├── .php-cs-fixer.php ├── DataCollector └── HydrationDataCollector.php ├── DebeshaDoctrineProfileExtraBundle.php ├── DependencyInjection ├── Configuration.php └── DebeshaDoctrineProfileExtraExtension.php ├── LICENSE ├── ORM ├── HydrationLogger.php ├── LoggingArrayHydrator.php ├── LoggingConfiguration.php ├── LoggingEntityManager.php ├── LoggingHydratorTrait.php ├── LoggingObjectHydrator.php ├── LoggingScalarHydrator.php ├── LoggingSimpleObjectHydrator.php └── LoggingSingleScalarHydrator.php ├── README.md ├── Resources ├── config │ └── services.xml └── views │ └── Collector │ └── hydrations.html.twig ├── composer.json ├── phpstan.neon.dist ├── phpunit.xml.dist └── tests ├── Unit ├── DataCollector │ └── HydrationDataCollectorTest.php ├── ORM │ ├── HydrationLoggerTest.php │ ├── LoggingArrayHydratorTest.php │ ├── LoggingHydratorTraitTest.php │ ├── LoggingObjectHydratorTest.php │ ├── LoggingScalarHydratorTest.php │ ├── LoggingSimpleObjectHydratorTest.php │ └── LoggingSingleScalarHydratorTest.php └── bootstrap.php └── integration └── symfony73 ├── .editorconfig ├── .env ├── .env.dev ├── .env.test ├── .gitignore ├── bin └── console ├── composer-orm2.json ├── composer-orm2.lock ├── composer-orm3.json ├── composer-orm3.lock ├── composer.json ├── config ├── bundles.php ├── packages │ ├── cache.yaml │ ├── doctrine.yaml │ ├── doctrine_migrations.yaml │ ├── framework.yaml │ ├── routing.yaml │ ├── twig.yaml │ └── web_profiler.yaml ├── preload.php ├── routes.yaml ├── routes │ ├── framework.yaml │ └── web_profiler.yaml └── services.yaml ├── migrations └── Version20250606132451.php ├── phpunit.xml.dist ├── public └── index.php ├── src ├── Controller │ ├── .gitignore │ └── TestController.php ├── DataFixtures │ └── AppFixtures.php ├── Entity │ ├── .gitignore │ └── TestEntity.php ├── Kernel.php └── Repository │ ├── .gitignore │ └── .gitkeep ├── symfony-orm2.lock ├── symfony-orm3.lock ├── templates └── base.html.twig └── tests ├── TestControllerTest.php └── bootstrap.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/.gitignore -------------------------------------------------------------------------------- /.php-cs-fixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/.php-cs-fixer.php -------------------------------------------------------------------------------- /DataCollector/HydrationDataCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/DataCollector/HydrationDataCollector.php -------------------------------------------------------------------------------- /DebeshaDoctrineProfileExtraBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/DebeshaDoctrineProfileExtraBundle.php -------------------------------------------------------------------------------- /DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /DependencyInjection/DebeshaDoctrineProfileExtraExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/DependencyInjection/DebeshaDoctrineProfileExtraExtension.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/LICENSE -------------------------------------------------------------------------------- /ORM/HydrationLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/ORM/HydrationLogger.php -------------------------------------------------------------------------------- /ORM/LoggingArrayHydrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/ORM/LoggingArrayHydrator.php -------------------------------------------------------------------------------- /ORM/LoggingConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/ORM/LoggingConfiguration.php -------------------------------------------------------------------------------- /ORM/LoggingEntityManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/ORM/LoggingEntityManager.php -------------------------------------------------------------------------------- /ORM/LoggingHydratorTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/ORM/LoggingHydratorTrait.php -------------------------------------------------------------------------------- /ORM/LoggingObjectHydrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/ORM/LoggingObjectHydrator.php -------------------------------------------------------------------------------- /ORM/LoggingScalarHydrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/ORM/LoggingScalarHydrator.php -------------------------------------------------------------------------------- /ORM/LoggingSimpleObjectHydrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/ORM/LoggingSimpleObjectHydrator.php -------------------------------------------------------------------------------- /ORM/LoggingSingleScalarHydrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/ORM/LoggingSingleScalarHydrator.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/README.md -------------------------------------------------------------------------------- /Resources/config/services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/Resources/config/services.xml -------------------------------------------------------------------------------- /Resources/views/Collector/hydrations.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/Resources/views/Collector/hydrations.html.twig -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/composer.json -------------------------------------------------------------------------------- /phpstan.neon.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/phpstan.neon.dist -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /tests/Unit/DataCollector/HydrationDataCollectorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/tests/Unit/DataCollector/HydrationDataCollectorTest.php -------------------------------------------------------------------------------- /tests/Unit/ORM/HydrationLoggerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/tests/Unit/ORM/HydrationLoggerTest.php -------------------------------------------------------------------------------- /tests/Unit/ORM/LoggingArrayHydratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/tests/Unit/ORM/LoggingArrayHydratorTest.php -------------------------------------------------------------------------------- /tests/Unit/ORM/LoggingHydratorTraitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/tests/Unit/ORM/LoggingHydratorTraitTest.php -------------------------------------------------------------------------------- /tests/Unit/ORM/LoggingObjectHydratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/tests/Unit/ORM/LoggingObjectHydratorTest.php -------------------------------------------------------------------------------- /tests/Unit/ORM/LoggingScalarHydratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/tests/Unit/ORM/LoggingScalarHydratorTest.php -------------------------------------------------------------------------------- /tests/Unit/ORM/LoggingSimpleObjectHydratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/tests/Unit/ORM/LoggingSimpleObjectHydratorTest.php -------------------------------------------------------------------------------- /tests/Unit/ORM/LoggingSingleScalarHydratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/tests/Unit/ORM/LoggingSingleScalarHydratorTest.php -------------------------------------------------------------------------------- /tests/Unit/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/tests/Unit/bootstrap.php -------------------------------------------------------------------------------- /tests/integration/symfony73/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/tests/integration/symfony73/.editorconfig -------------------------------------------------------------------------------- /tests/integration/symfony73/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/tests/integration/symfony73/.env -------------------------------------------------------------------------------- /tests/integration/symfony73/.env.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/tests/integration/symfony73/.env.dev -------------------------------------------------------------------------------- /tests/integration/symfony73/.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/tests/integration/symfony73/.env.test -------------------------------------------------------------------------------- /tests/integration/symfony73/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/tests/integration/symfony73/.gitignore -------------------------------------------------------------------------------- /tests/integration/symfony73/bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/tests/integration/symfony73/bin/console -------------------------------------------------------------------------------- /tests/integration/symfony73/composer-orm2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/tests/integration/symfony73/composer-orm2.json -------------------------------------------------------------------------------- /tests/integration/symfony73/composer-orm2.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/tests/integration/symfony73/composer-orm2.lock -------------------------------------------------------------------------------- /tests/integration/symfony73/composer-orm3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/tests/integration/symfony73/composer-orm3.json -------------------------------------------------------------------------------- /tests/integration/symfony73/composer-orm3.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/tests/integration/symfony73/composer-orm3.lock -------------------------------------------------------------------------------- /tests/integration/symfony73/composer.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /tests/integration/symfony73/config/bundles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/tests/integration/symfony73/config/bundles.php -------------------------------------------------------------------------------- /tests/integration/symfony73/config/packages/cache.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/tests/integration/symfony73/config/packages/cache.yaml -------------------------------------------------------------------------------- /tests/integration/symfony73/config/packages/doctrine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/tests/integration/symfony73/config/packages/doctrine.yaml -------------------------------------------------------------------------------- /tests/integration/symfony73/config/packages/doctrine_migrations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/tests/integration/symfony73/config/packages/doctrine_migrations.yaml -------------------------------------------------------------------------------- /tests/integration/symfony73/config/packages/framework.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/tests/integration/symfony73/config/packages/framework.yaml -------------------------------------------------------------------------------- /tests/integration/symfony73/config/packages/routing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/tests/integration/symfony73/config/packages/routing.yaml -------------------------------------------------------------------------------- /tests/integration/symfony73/config/packages/twig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/tests/integration/symfony73/config/packages/twig.yaml -------------------------------------------------------------------------------- /tests/integration/symfony73/config/packages/web_profiler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/tests/integration/symfony73/config/packages/web_profiler.yaml -------------------------------------------------------------------------------- /tests/integration/symfony73/config/preload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/tests/integration/symfony73/config/preload.php -------------------------------------------------------------------------------- /tests/integration/symfony73/config/routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/tests/integration/symfony73/config/routes.yaml -------------------------------------------------------------------------------- /tests/integration/symfony73/config/routes/framework.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/tests/integration/symfony73/config/routes/framework.yaml -------------------------------------------------------------------------------- /tests/integration/symfony73/config/routes/web_profiler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/tests/integration/symfony73/config/routes/web_profiler.yaml -------------------------------------------------------------------------------- /tests/integration/symfony73/config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/tests/integration/symfony73/config/services.yaml -------------------------------------------------------------------------------- /tests/integration/symfony73/migrations/Version20250606132451.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/tests/integration/symfony73/migrations/Version20250606132451.php -------------------------------------------------------------------------------- /tests/integration/symfony73/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/tests/integration/symfony73/phpunit.xml.dist -------------------------------------------------------------------------------- /tests/integration/symfony73/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/tests/integration/symfony73/public/index.php -------------------------------------------------------------------------------- /tests/integration/symfony73/src/Controller/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/symfony73/src/Controller/TestController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/tests/integration/symfony73/src/Controller/TestController.php -------------------------------------------------------------------------------- /tests/integration/symfony73/src/DataFixtures/AppFixtures.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/tests/integration/symfony73/src/DataFixtures/AppFixtures.php -------------------------------------------------------------------------------- /tests/integration/symfony73/src/Entity/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/symfony73/src/Entity/TestEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/tests/integration/symfony73/src/Entity/TestEntity.php -------------------------------------------------------------------------------- /tests/integration/symfony73/src/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/tests/integration/symfony73/src/Kernel.php -------------------------------------------------------------------------------- /tests/integration/symfony73/src/Repository/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/symfony73/src/Repository/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/symfony73/symfony-orm2.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/tests/integration/symfony73/symfony-orm2.lock -------------------------------------------------------------------------------- /tests/integration/symfony73/symfony-orm3.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/tests/integration/symfony73/symfony-orm3.lock -------------------------------------------------------------------------------- /tests/integration/symfony73/templates/base.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/tests/integration/symfony73/templates/base.html.twig -------------------------------------------------------------------------------- /tests/integration/symfony73/tests/TestControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/tests/integration/symfony73/tests/TestControllerTest.php -------------------------------------------------------------------------------- /tests/integration/symfony73/tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debesha/DoctrineProfileExtraBundle/HEAD/tests/integration/symfony73/tests/bootstrap.php --------------------------------------------------------------------------------