├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── example ├── composer.json ├── full-config.php ├── illuminate-container.php ├── laminas-servicemanager.php ├── minimal-config-custom-key.php └── minimal-config.php └── src ├── AbstractFactory.php ├── Cache ├── NullCache.php └── NullCacheItem.php ├── CacheFactory.php ├── ConfigurationFactory.php ├── ConnectionFactory.php ├── DriverFactory.php ├── EntityManagerFactory.php ├── EventManagerFactory.php ├── Exception ├── DomainException.php ├── ExceptionInterface.php ├── InvalidArgumentException.php └── OutOfBoundsException.php └── Migrations ├── CommandFactory.php ├── ConfigurationLoaderFactory.php └── DependencyFactoryFactory.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/psr-container-doctrine/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/psr-container-doctrine/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/psr-container-doctrine/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/psr-container-doctrine/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/psr-container-doctrine/HEAD/composer.lock -------------------------------------------------------------------------------- /example/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/psr-container-doctrine/HEAD/example/composer.json -------------------------------------------------------------------------------- /example/full-config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/psr-container-doctrine/HEAD/example/full-config.php -------------------------------------------------------------------------------- /example/illuminate-container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/psr-container-doctrine/HEAD/example/illuminate-container.php -------------------------------------------------------------------------------- /example/laminas-servicemanager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/psr-container-doctrine/HEAD/example/laminas-servicemanager.php -------------------------------------------------------------------------------- /example/minimal-config-custom-key.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/psr-container-doctrine/HEAD/example/minimal-config-custom-key.php -------------------------------------------------------------------------------- /example/minimal-config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/psr-container-doctrine/HEAD/example/minimal-config.php -------------------------------------------------------------------------------- /src/AbstractFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/psr-container-doctrine/HEAD/src/AbstractFactory.php -------------------------------------------------------------------------------- /src/Cache/NullCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/psr-container-doctrine/HEAD/src/Cache/NullCache.php -------------------------------------------------------------------------------- /src/Cache/NullCacheItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/psr-container-doctrine/HEAD/src/Cache/NullCacheItem.php -------------------------------------------------------------------------------- /src/CacheFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/psr-container-doctrine/HEAD/src/CacheFactory.php -------------------------------------------------------------------------------- /src/ConfigurationFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/psr-container-doctrine/HEAD/src/ConfigurationFactory.php -------------------------------------------------------------------------------- /src/ConnectionFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/psr-container-doctrine/HEAD/src/ConnectionFactory.php -------------------------------------------------------------------------------- /src/DriverFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/psr-container-doctrine/HEAD/src/DriverFactory.php -------------------------------------------------------------------------------- /src/EntityManagerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/psr-container-doctrine/HEAD/src/EntityManagerFactory.php -------------------------------------------------------------------------------- /src/EventManagerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/psr-container-doctrine/HEAD/src/EventManagerFactory.php -------------------------------------------------------------------------------- /src/Exception/DomainException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/psr-container-doctrine/HEAD/src/Exception/DomainException.php -------------------------------------------------------------------------------- /src/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/psr-container-doctrine/HEAD/src/Exception/ExceptionInterface.php -------------------------------------------------------------------------------- /src/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/psr-container-doctrine/HEAD/src/Exception/InvalidArgumentException.php -------------------------------------------------------------------------------- /src/Exception/OutOfBoundsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/psr-container-doctrine/HEAD/src/Exception/OutOfBoundsException.php -------------------------------------------------------------------------------- /src/Migrations/CommandFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/psr-container-doctrine/HEAD/src/Migrations/CommandFactory.php -------------------------------------------------------------------------------- /src/Migrations/ConfigurationLoaderFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/psr-container-doctrine/HEAD/src/Migrations/ConfigurationLoaderFactory.php -------------------------------------------------------------------------------- /src/Migrations/DependencyFactoryFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roave/psr-container-doctrine/HEAD/src/Migrations/DependencyFactoryFactory.php --------------------------------------------------------------------------------