├── .circleci └── config.yml ├── .php_cs.dist.php ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json └── src ├── Contracts ├── Arrayable.php ├── Breakable.php ├── HasLooper.php ├── Indexable.php ├── Jsonable.php ├── LoopCallback.php ├── Looper.php └── Workable.php ├── Exceptions ├── AsyncIsNotSupportedException.php └── NotWorkedException.php ├── Index.php ├── Loop.php ├── Workers ├── AsyncWorker.php └── DefaultWorker.php └── helpers.php /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaeken/loops/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.php_cs.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaeken/loops/HEAD/.php_cs.dist.php -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaeken/loops/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaeken/loops/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaeken/loops/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaeken/loops/HEAD/composer.json -------------------------------------------------------------------------------- /src/Contracts/Arrayable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaeken/loops/HEAD/src/Contracts/Arrayable.php -------------------------------------------------------------------------------- /src/Contracts/Breakable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaeken/loops/HEAD/src/Contracts/Breakable.php -------------------------------------------------------------------------------- /src/Contracts/HasLooper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaeken/loops/HEAD/src/Contracts/HasLooper.php -------------------------------------------------------------------------------- /src/Contracts/Indexable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaeken/loops/HEAD/src/Contracts/Indexable.php -------------------------------------------------------------------------------- /src/Contracts/Jsonable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaeken/loops/HEAD/src/Contracts/Jsonable.php -------------------------------------------------------------------------------- /src/Contracts/LoopCallback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaeken/loops/HEAD/src/Contracts/LoopCallback.php -------------------------------------------------------------------------------- /src/Contracts/Looper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaeken/loops/HEAD/src/Contracts/Looper.php -------------------------------------------------------------------------------- /src/Contracts/Workable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaeken/loops/HEAD/src/Contracts/Workable.php -------------------------------------------------------------------------------- /src/Exceptions/AsyncIsNotSupportedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaeken/loops/HEAD/src/Exceptions/AsyncIsNotSupportedException.php -------------------------------------------------------------------------------- /src/Exceptions/NotWorkedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaeken/loops/HEAD/src/Exceptions/NotWorkedException.php -------------------------------------------------------------------------------- /src/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaeken/loops/HEAD/src/Index.php -------------------------------------------------------------------------------- /src/Loop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaeken/loops/HEAD/src/Loop.php -------------------------------------------------------------------------------- /src/Workers/AsyncWorker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaeken/loops/HEAD/src/Workers/AsyncWorker.php -------------------------------------------------------------------------------- /src/Workers/DefaultWorker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaeken/loops/HEAD/src/Workers/DefaultWorker.php -------------------------------------------------------------------------------- /src/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaeken/loops/HEAD/src/helpers.php --------------------------------------------------------------------------------