Download the PHP package hylianshield/date without Composer

On this page you can find all versions of the php package hylianshield/date. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package date

Introduction

The business logic abstraction layer for your date sensitive application.

Installation

Usage

The date container is an easy to understand container that can store data alongside full-fledged instances of DateTimeInterface. It uses instances of DateTimeInterface as keys and user supplied data as corresponding value.

It achieves this by internally using the date storage entity, which stores date objects as keys with a precision determined by a date format.

Creating a date container

One may use the factory to create a new date container. This is the easiest approach with the least required configuration.

Using a custom storage

The date storage is what internally stores the dates and corresponding data into memory. It needs both a date format and an instance of DateTimeZone to be properly configured.

The supplied date format is used to uniquely identify date objects. To prevent dates from different time zones to pollute our business logic, the storage only accepts date instances that match the given time zone.

Populating the container

The example code below is just that. Example code. Normally, this would probably be populated by iterating over a data source.

We use a reference date, right in the middle of our date period.

And we'll construct a date period with that.

Using that, we populate the container with dummy data.

Now we can check if today is stored in the container:

We can explicitly get data for that date.

Overriding the data remains a possibility.

Iterating the container

The real power of the container lies in the fact that you have full DateTimeInterface instances as the keys of your container.

This outputs something like:

Exporting the container

To easily export the data inside the container, it exposes a method to convert to a PHP array.

This will output something like:

The keys used here will correspond with the format as configured on the date storage.

Detaching dates

When detaching a date, the date and all corresponding data disappears:

Outputs something like:

Setting an illegal date

When mixing dates from different time zones, your business logic gets skewed. To prevent this, the date storage does not allow mixing of time zones.

Will render the following:


All versions of date with dependencies

PHP Build Version
Package Version
Requires php Version ^7.0
ext-spl Version ^7.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package hylianshield/date contains the following files

Loading the files please wait ....