2017 © Pedro Peláez
 

library datevalue

Simple extension to Carbon that makes distinction between date and date-time objects

image

activecollab/datevalue

Simple extension to Carbon that makes distinction between date and date-time objects

  • Wednesday, May 31, 2017
  • by ilijastuden
  • Repository
  • 3 Watchers
  • 0 Stars
  • 13,785 Installations
  • PHP
  • 4 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 5 Versions
  • 11 % Grown

The README.md

DateValue

Build Status, (*1)

Simple extension to Carbon that makes distinction between date and date-time objects. In order to create a date object, write:, (*2)

<?php

namespace MyApp;

use ActiveCollab\DateValue\DateValue;

$date = new DateValue('last day of April 2017');
print $date->format('Y-m-d') . "\n";

In order to create a date and time object, create a DateTimeValue instance:, (*3)

<?php

namespace MyApp;

use ActiveCollab\DateValue\DateTimeValue;

$date_time = new DateTimeValue('last day of April 2017');
print $date_time->format('Y-m-d H:i:s') . "\n";

Since both DateValue, and DateTimeValue classes extend Carbon, you can also use all Carbon methods in your code:, (*4)

<?php

namespace MyApp;

use ActiveCollab\DateValue\DateTimeValue;

$date_time = (new DateTimeValue('last day of April 2017'))->endOfDay();
print $date_time->format('Y-m-d H:i:s') . "\n";

To specify a date range, use DateRange class. Ranges can be easily iterated:, (*5)

<?php

namespace MyApp;

use ActiveCollab\DateValue\DateRange;
use ActiveCollab\DateValue\DateValue;
use ActiveCollab\DateValue\DateValueInterface;

$first_day = new DateValue('first day of April 2017');
$last_day = new DateValue('last day of April 2017');

$date_range = new DateRange($first_day, $last_day);

/** @var DateValueInterface $day */
foreach ($date_range as $day) {
    $this->assertInstanceOf(DateValueInterface::class, $day);
    print $day->format('Y-m-d') . "\n"; // Prints all days from 2017-04-01 to 2017-04-30.
}

There are three helper date range classes:, (*6)

<?php

namespace MyApp;

use ActiveCollab\DateValue\DateRange\MonthDateRange;
use ActiveCollab\DateValue\DateRange\QuarterDateRange;
use ActiveCollab\DateValue\DateRange\YearDateRange;

new MonthDateRange(2017, 4); // April 2017.
new QuarterDateRange(2017, 2); // Q2 2017.
new YearDateRange(2017); // The whole 2017.

These ranges automatically calculate start and end dates, and they can be iterated, just like custom date ranges., (*7)

Version 2

Goals of second iteration of this package are:, (*8)

  • [x] Make the package require PHP 7.1, and use strict types in all files,
  • [x] Make the library 100% covered with tests,
  • [x] Add support for custom date ranges, as well as year, quarter, month, and day ranges,
  • [x] Add support for easy looping in date ranges.

The Versions

31/05 2017

v2.0.x-dev

2.0.9999999.9999999-dev https://labs.activecollab.com

Simple extension to Carbon that makes distinction between date and date-time objects

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ilija Studen

date datetime activecollab

13/05 2017

dev-master

9999999-dev https://labs.activecollab.com

Simple extension to Carbon that makes distinction between date and date-time objects

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ilija Studen

date datetime activecollab

08/05 2016

1.0.2

1.0.2.0 https://labs.activecollab.com

Simple extension to Carbon that makes distinction between date and date-time objects

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ilija Studen

date datetime activecollab

26/04 2016

1.0.1

1.0.1.0 https://labs.activecollab.com

Simple extension to Carbon that makes distinction between date and date-time objects

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ilija Studen

date datetime activecollab

26/11 2015

1.0.0

1.0.0.0 https://labs.activecollab.com

Simple extension to Carbon that makes distinction between date and date-time objects

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ilija Studen

date datetime activecollab