├── .atoum.php ├── .bootstrap.atoum.php ├── .gitignore ├── .php_cs ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── couscous.yml ├── docs ├── README.md ├── runtime.md └── time.md ├── examples ├── data │ ├── d1.dat │ ├── d2.dat │ ├── first.log │ ├── second.log │ └── tiny.dat ├── not-ok │ ├── http.php │ └── pipes.php └── ok │ ├── all.php │ ├── await.php │ ├── delay.php │ ├── race.php │ ├── read.php │ ├── socket.php │ ├── some.php │ ├── stream-read.php │ ├── throttle.php │ ├── wrap.php │ └── yield-from.php ├── src ├── loop.php ├── loop │ └── functions.php ├── pipe.php ├── pipe │ └── functions.php ├── process.php ├── runtime.php ├── runtime │ └── functions.php ├── socket.php ├── stream.php ├── time.php ├── time │ └── functions.php └── wrapper.php └── tests ├── func.php └── units └── src ├── runtime.php ├── runtime └── functions │ ├── all.php │ ├── await.php │ ├── race.php │ └── some.php ├── time.php └── time └── functions └── delay.php /.atoum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jubianchi/async-generator/HEAD/.atoum.php -------------------------------------------------------------------------------- /.bootstrap.atoum.php: -------------------------------------------------------------------------------- 1 |