Skip to content

Commit 6187b20

Browse files
committed
Update badges and license
1 parent 7c812b0 commit 6187b20

File tree

2 files changed

+23
-5
lines changed

2 files changed

+23
-5
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2016 Pavol Kirschbaum
3+
Copyright (c) 2016-2018 Pavol Kirschbaum <[email protected]>
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+22-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
# pauci/datetime
22

3-
[![Latest Stable Version](https://poser.pugx.org/pauci/datetime/v/stable)](https://packagist.org/packages/pauci/datetime)
4-
[![Total Downloads](https://poser.pugx.org/pauci/datetime/downloads)](https://packagist.org/packages/pauci/datetime)
5-
[![Build Status](https://travis-ci.org/pauci/datetime.svg?branch=master)](https://travis-ci.org/pauci/datetime)
6-
[![Coverage Status](https://coveralls.io/repos/pauci/datetime/badge.png?branch=master)](https://coveralls.io/r/pauci/datetime)
3+
[![Source Code][badge-source]][source]
4+
[![Latest Version][badge-release]][release]
5+
[![Software License][badge-license]][license]
6+
[![Build Status][badge-build]][build]
7+
[![Coverage Status][badge-coverage]][coverage]
8+
[![Total Downloads][badge-downloads]][downloads]
79

810
Provides enhanced DateTime and DateInterval objects
911
- extends built-in DateTimeImmutable object (to discourage the use of mutable version)
@@ -27,3 +29,19 @@ echo DateTime::microsecondsNow(); // 2016-05-20T14:30:54.074420+02:00
2729

2830
echo DateTime::fromFloatTimestamp(1512148033.000005); // 2017-12-01T18:07:13.000005+01:00
2931
```
32+
33+
34+
35+
[badge-source]: https://img.shields.io/badge/source-pauci/datetime-blue.svg?style=flat-square
36+
[badge-release]: https://img.shields.io/packagist/v/pauci/datetime.svg?style=flat-square
37+
[badge-license]: https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square
38+
[badge-build]: https://img.shields.io/travis/pauci/datetime/master.svg?style=flat-square
39+
[badge-coverage]: https://img.shields.io/coveralls/pauci/datetime/master.svg?style=flat-square
40+
[badge-downloads]: https://img.shields.io/packagist/dt/pauci/datetime.svg?style=flat-square
41+
42+
[source]: https://github.com/pauci/datetime
43+
[release]: https://packagist.org/packages/pauci/datetime
44+
[license]: https://github.com/pauci/datetime/blob/master/LICENSE
45+
[build]: https://travis-ci.org/pauci/datetime
46+
[coverage]: https://coveralls.io/r/pauci/datetime?branch=master
47+
[downloads]: https://packagist.org/packages/pauci/datetime

0 commit comments

Comments
 (0)