kwetal / workdays
A calendar for calculating with workdays
Installs: 10
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/kwetal/workdays
Requires
- php: >=5.4.0
- kwetal/dateutils: dev-master
Requires (Dev)
- phpunit/phpunit: 4.3.*
This package is not auto-updated.
Last update: 2025-10-21 06:54:40 UTC
README
A library for calculations with workdays
Installation
The recommended way to install Kwetal/Workdays is through composer.
Just create a composer.json
file for your project:
{ "require": { "kwetal/workdays": "dev-master" } }
And run these two commands to install it:
$ curl -sS https://getcomposer.org/installer | php
$ composer install
Now you can add the autoloader, and you will have access to the library:
<?php require 'vendor/autoload.php';
Unit tests
After installing, from the root project dir run
$ vendor/bin/phpunit