├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── changelog.md ├── composer.json ├── phpunit.xml.dist ├── src └── Dflydev │ └── Provider │ └── DoctrineOrm │ └── DoctrineOrmServiceProvider.php └── tests ├── Dflydev └── Tests │ └── Provider │ └── DoctrineOrm │ └── DoctrineOrmServiceProviderTest.php └── bootstrap.php /.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | vendor 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dflydev/dflydev-doctrine-orm-service-provider/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dflydev/dflydev-doctrine-orm-service-provider/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dflydev/dflydev-doctrine-orm-service-provider/HEAD/README.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dflydev/dflydev-doctrine-orm-service-provider/HEAD/changelog.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dflydev/dflydev-doctrine-orm-service-provider/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dflydev/dflydev-doctrine-orm-service-provider/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Dflydev/Provider/DoctrineOrm/DoctrineOrmServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dflydev/dflydev-doctrine-orm-service-provider/HEAD/src/Dflydev/Provider/DoctrineOrm/DoctrineOrmServiceProvider.php -------------------------------------------------------------------------------- /tests/Dflydev/Tests/Provider/DoctrineOrm/DoctrineOrmServiceProviderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dflydev/dflydev-doctrine-orm-service-provider/HEAD/tests/Dflydev/Tests/Provider/DoctrineOrm/DoctrineOrmServiceProviderTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dflydev/dflydev-doctrine-orm-service-provider/HEAD/tests/bootstrap.php --------------------------------------------------------------------------------