├── .github ├── FUNDING.yml └── workflows │ ├── continuous-integration.yml │ └── release-on-milestone-closed.yml ├── .gitignore ├── .laminas-ci.json ├── LICENSE ├── README.md ├── UPGRADE.md ├── composer.json ├── composer.lock ├── examples ├── bootstrap-orm.php ├── entity │ └── MyEntity.php ├── persisting-new-objects-in-batch.php └── working-with-query-resultsets-in-batch.php ├── infection.json.dist ├── phpcs.xml.dist ├── phpunit.xml.dist ├── psalm.xml ├── renovate.json ├── src └── DoctrineBatchUtils │ └── BatchProcessing │ ├── Exception │ ├── ExceptionInterface.php │ └── MissingBatchItemException.php │ ├── SelectBatchIteratorAggregate.php │ └── SimpleBatchIteratorAggregate.php └── test └── DoctrineBatchUtilsTest ├── BatchProcessing ├── Exception │ └── MissingBatchItemExceptionTest.php ├── SelectBatchIteratorAggregateTest.php └── SimpleBatchIteratorAggregateTest.php └── MockEntityManager.php /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [Ocramius] 2 | -------------------------------------------------------------------------------- /.github/workflows/continuous-integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ocramius/DoctrineBatchUtils/HEAD/.github/workflows/continuous-integration.yml -------------------------------------------------------------------------------- /.github/workflows/release-on-milestone-closed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ocramius/DoctrineBatchUtils/HEAD/.github/workflows/release-on-milestone-closed.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ocramius/DoctrineBatchUtils/HEAD/.gitignore -------------------------------------------------------------------------------- /.laminas-ci.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ocramius/DoctrineBatchUtils/HEAD/.laminas-ci.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ocramius/DoctrineBatchUtils/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ocramius/DoctrineBatchUtils/HEAD/README.md -------------------------------------------------------------------------------- /UPGRADE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ocramius/DoctrineBatchUtils/HEAD/UPGRADE.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ocramius/DoctrineBatchUtils/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ocramius/DoctrineBatchUtils/HEAD/composer.lock -------------------------------------------------------------------------------- /examples/bootstrap-orm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ocramius/DoctrineBatchUtils/HEAD/examples/bootstrap-orm.php -------------------------------------------------------------------------------- /examples/entity/MyEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ocramius/DoctrineBatchUtils/HEAD/examples/entity/MyEntity.php -------------------------------------------------------------------------------- /examples/persisting-new-objects-in-batch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ocramius/DoctrineBatchUtils/HEAD/examples/persisting-new-objects-in-batch.php -------------------------------------------------------------------------------- /examples/working-with-query-resultsets-in-batch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ocramius/DoctrineBatchUtils/HEAD/examples/working-with-query-resultsets-in-batch.php -------------------------------------------------------------------------------- /infection.json.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ocramius/DoctrineBatchUtils/HEAD/infection.json.dist -------------------------------------------------------------------------------- /phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ocramius/DoctrineBatchUtils/HEAD/phpcs.xml.dist -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ocramius/DoctrineBatchUtils/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ocramius/DoctrineBatchUtils/HEAD/psalm.xml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ocramius/DoctrineBatchUtils/HEAD/renovate.json -------------------------------------------------------------------------------- /src/DoctrineBatchUtils/BatchProcessing/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ocramius/DoctrineBatchUtils/HEAD/src/DoctrineBatchUtils/BatchProcessing/Exception/ExceptionInterface.php -------------------------------------------------------------------------------- /src/DoctrineBatchUtils/BatchProcessing/Exception/MissingBatchItemException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ocramius/DoctrineBatchUtils/HEAD/src/DoctrineBatchUtils/BatchProcessing/Exception/MissingBatchItemException.php -------------------------------------------------------------------------------- /src/DoctrineBatchUtils/BatchProcessing/SelectBatchIteratorAggregate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ocramius/DoctrineBatchUtils/HEAD/src/DoctrineBatchUtils/BatchProcessing/SelectBatchIteratorAggregate.php -------------------------------------------------------------------------------- /src/DoctrineBatchUtils/BatchProcessing/SimpleBatchIteratorAggregate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ocramius/DoctrineBatchUtils/HEAD/src/DoctrineBatchUtils/BatchProcessing/SimpleBatchIteratorAggregate.php -------------------------------------------------------------------------------- /test/DoctrineBatchUtilsTest/BatchProcessing/Exception/MissingBatchItemExceptionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ocramius/DoctrineBatchUtils/HEAD/test/DoctrineBatchUtilsTest/BatchProcessing/Exception/MissingBatchItemExceptionTest.php -------------------------------------------------------------------------------- /test/DoctrineBatchUtilsTest/BatchProcessing/SelectBatchIteratorAggregateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ocramius/DoctrineBatchUtils/HEAD/test/DoctrineBatchUtilsTest/BatchProcessing/SelectBatchIteratorAggregateTest.php -------------------------------------------------------------------------------- /test/DoctrineBatchUtilsTest/BatchProcessing/SimpleBatchIteratorAggregateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ocramius/DoctrineBatchUtils/HEAD/test/DoctrineBatchUtilsTest/BatchProcessing/SimpleBatchIteratorAggregateTest.php -------------------------------------------------------------------------------- /test/DoctrineBatchUtilsTest/MockEntityManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ocramius/DoctrineBatchUtils/HEAD/test/DoctrineBatchUtilsTest/MockEntityManager.php --------------------------------------------------------------------------------