├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml ├── src ├── .gitkeep └── EstimatedReadingTime.php └── tests ├── .gitkeep └── EstimatedReadingTimeTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | .idea/ 3 | composer.lock 4 | .php_cs.cache 5 | build/ -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheenam/estimated-reading-time/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheenam/estimated-reading-time/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheenam/estimated-reading-time/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheenam/estimated-reading-time/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheenam/estimated-reading-time/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/EstimatedReadingTime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheenam/estimated-reading-time/HEAD/src/EstimatedReadingTime.php -------------------------------------------------------------------------------- /tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/EstimatedReadingTimeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheenam/estimated-reading-time/HEAD/tests/EstimatedReadingTimeTest.php --------------------------------------------------------------------------------