├── .gitignore ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src └── DurationParser.php └── tests ├── Bootstrap.php ├── DurationParserTest.php └── TestCase.php /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bretterer/iso_duration_converter/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bretterer/iso_duration_converter/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bretterer/iso_duration_converter/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/DurationParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bretterer/iso_duration_converter/HEAD/src/DurationParser.php -------------------------------------------------------------------------------- /tests/Bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bretterer/iso_duration_converter/HEAD/tests/Bootstrap.php -------------------------------------------------------------------------------- /tests/DurationParserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bretterer/iso_duration_converter/HEAD/tests/DurationParserTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bretterer/iso_duration_converter/HEAD/tests/TestCase.php --------------------------------------------------------------------------------