PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Fernando Val   PHP Business Days Calculator   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Business Days Calculator
Get the business days after today or a given date
Author: By
Last change:
Date: 3 years ago
Size: 1,086 bytes
 

Contents

Class file image Download
{ "name": "springy-framework/business-days-calculator", "description": "PHP class for calculate business days for given date", "license": "MIT", "authors": [ { "name": "Fernando Val", "homepage": "https://fval.com.br", "email": "fernando.val@gmail.com", "role": "Developer" } ], "require": { "php": ">=7.3" }, "require-dev": { "phpunit/phpunit": "^9.4", "squizlabs/php_codesniffer": "^3.5", "phpmd/phpmd": "@stable", "phpstan/phpstan": "^0.12.5" }, "autoload": { "classmap": [ "src/" ] }, "scripts": { "phpcs": "phpcs --standard=PSR12 -n src", "phpcbf" : "phpcbf --standard=PSR12 -n src", "phpmd" : "phpmd . html codesize.xml > phpmd.html", "unit": "phpunit --colors=always", "phpstan": "phpstan analyse src --level 0", "test": [ "@phpcs", "@phpcbf", "@phpmd", "@unit", "@phpstan" ] } }