PATH:
home
/
lab2454c
/
mact34.com
/
wp-content
/
plugins
/
updraftplus
/
vendor
/
guzzle
/
guzzle
/
src
/
Guzzle
/
Iterator
Guzzle Iterator =============== Provides useful Iterators and Iterator decorators - ChunkedIterator: Pulls out chunks from an inner iterator and yields the chunks as arrays - FilterIterator: Used when PHP 5.4's CallbackFilterIterator is not available - MapIterator: Maps values before yielding - MethodProxyIterator: Proxies missing method calls to the innermost iterator ### Installing via Composer ```bash # Install Composer curl -sS https://getcomposer.org/installer | php # Add Guzzle as a dependency php composer.phar require guzzle/iterator:~3.0 ``` After installing, you need to require Composer's autoloader: ```php require 'vendor/autoload.php'; ```
[-] composer.json
[edit]
[-] ChunkedIterator.php
[edit]
[+]
..
[-] MethodProxyIterator.php
[edit]
[-] MapIterator.php
[edit]
[-] README.md
[edit]
[-] FilterIterator.php
[edit]
[-] AppendIterator.php
[edit]