├── .gitignore ├── .php_cs.dist ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src └── BlockDetector.php └── test └── BlockTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | /composer.lock 3 | /.php_cs.cache -------------------------------------------------------------------------------- /.php_cs.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelunik/loop-block/HEAD/.php_cs.dist -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelunik/loop-block/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelunik/loop-block/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelunik/loop-block/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelunik/loop-block/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelunik/loop-block/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelunik/loop-block/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/BlockDetector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelunik/loop-block/HEAD/src/BlockDetector.php -------------------------------------------------------------------------------- /test/BlockTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelunik/loop-block/HEAD/test/BlockTest.php --------------------------------------------------------------------------------