jaybizzle/php-seasons

A small utility class that returns the meteorological season from a given date.

v1.0.0 2017-09-13 20:01 UTC

This package is auto-updated.

Last update: 2024-03-29 02:39:29 UTC


README

Build Status Total Downloads MIT Version StyleCI

A small utility class that returns the meteorological season from a given date.

Installation

Run composer require jaybizzle/php-seasons dev-master or add "jaybizzle/php-seasons" :"dev-master" to your composer.json.

Usage

use Jaybizzle\Seasons;

$season = new Seasons;

// Get season from date
$season->get('1st June');
    // Output: Summer

// Get current season
$season->get();

Analytics