├── .github ├── FUNDING.yml └── workflows │ └── tests.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── SECURITY.md ├── composer.json ├── src ├── Duration.php └── Duration │ ├── DurationException.php │ └── Exception │ └── InvalidDuration.php └── tests └── DurationTest.php /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeromegamez/duration-php/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeromegamez/duration-php/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeromegamez/duration-php/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeromegamez/duration-php/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeromegamez/duration-php/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeromegamez/duration-php/HEAD/SECURITY.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeromegamez/duration-php/HEAD/composer.json -------------------------------------------------------------------------------- /src/Duration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeromegamez/duration-php/HEAD/src/Duration.php -------------------------------------------------------------------------------- /src/Duration/DurationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeromegamez/duration-php/HEAD/src/Duration/DurationException.php -------------------------------------------------------------------------------- /src/Duration/Exception/InvalidDuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeromegamez/duration-php/HEAD/src/Duration/Exception/InvalidDuration.php -------------------------------------------------------------------------------- /tests/DurationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeromegamez/duration-php/HEAD/tests/DurationTest.php --------------------------------------------------------------------------------