jaybizzle / php-seasons
A small utility class that returns the meteorological season from a given date.
Installs: 14 793
Dependents: 0
Suggesters: 0
Security: 0
Stars: 5
Watchers: 4
Forks: 1
Open Issues: 2
Requires
- php: >=5.3.0
Requires (Dev)
This package is auto-updated.
Last update: 2020-12-31 00:35:42 UTC
README
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();