https://github.com/lostkobrakai/period
Period is a library for working with time periods in elixir.
https://github.com/lostkobrakai/period
datetime elixir elixir-lang period time
Last synced: 5 months ago
JSON representation
Period is a library for working with time periods in elixir.
- Host: GitHub
- URL: https://github.com/lostkobrakai/period
- Owner: LostKobrakai
- License: other
- Created: 2018-01-29T11:34:14.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-29T12:43:43.000Z (over 8 years ago)
- Last Synced: 2025-03-15T01:36:38.318Z (over 1 year ago)
- Topics: datetime, elixir, elixir-lang, period, time
- Language: Elixir
- Homepage:
- Size: 16.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Period
Period is a library for working with time periods. Inspired by php's [`league/period`](http://period.thephpleague.com).
[Documentation](https://hexdocs.pm/period)
## Installation
The package can be installed by adding `period` to your list of dependencies
in `mix.exs`:
```elixir
def deps do
[
{:period, "~> 0.1.0"}
]
end
```