├── .github └── workflows │ └── main.yml ├── LICENSE ├── composer.json ├── phpstan.neon └── src └── Codeception ├── Module └── Doctrine2.php └── Util └── ReflectionPropertyAccessor.php /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/module-doctrine2/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/module-doctrine2/HEAD/LICENSE -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/module-doctrine2/HEAD/composer.json -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/module-doctrine2/HEAD/phpstan.neon -------------------------------------------------------------------------------- /src/Codeception/Module/Doctrine2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/module-doctrine2/HEAD/src/Codeception/Module/Doctrine2.php -------------------------------------------------------------------------------- /src/Codeception/Util/ReflectionPropertyAccessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/module-doctrine2/HEAD/src/Codeception/Util/ReflectionPropertyAccessor.php --------------------------------------------------------------------------------