PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Eric Sizemore   Utility   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Utility
Collection of various PHP utility functions
Author: By
Last change: coding standards and documentation updates
chore(deps) Update phpunit-coverage-check
fix header docblock mistake, accidentally had another of my project's name

also adds Esi\Clock dependency for Dates utility class.
Date: 1 month ago
Size: 2,455 bytes
 

Contents

Class file image Download
{ "name": "esi/utility", "description": "Utility - Collection of various PHP utility functions.", "license": "MIT", "type": "library", "authors": [ { "name": "Eric Sizemore", "email": "admin@secondversion.com", "homepage": "https://www.secondversion.com/" } ], "support": { "issues": "https://github.com/ericsizemore/utility/issues", "forum": "https://github.com/ericsizemore/utility/discussions", "source": "https://github.com/ericsizemore/utility/tree/master", "security": "https://github.com/ericsizemore/utility/security/policy" }, "funding": [ { "type": "custom", "url": "https://ko-fi.com/ericsizemore" }, { "type": "github", "url": "https://github.com/ericsizemore" }, { "type": "tidelift", "url": "https://tidelift.com/funding/github/packagist/esi/utility" } ], "require": { "php": "^8.2 <8.5", "esi/clock": "^1.0", "ext-json": "*", "ext-mbstring": "*", "ralouphie/getallheaders": "^3.0", "voku/portable-ascii": "^2.0" }, "require-dev": { "esi/phpunit-coverage-check": "^2.0", "friendsofphp/php-cs-fixer": "^3.54", "phpstan/phpstan": "^1.11", "phpstan/phpstan-phpunit": "^1.4", "phpstan/phpstan-strict-rules": "^1.6", "phpunit/phpunit": "^11.1" }, "suggest": { "ext-exif": "To be able to use Exif for guessing image types with Utility\\Image", "ext-fileinfo": "To be able to use finfo/fileinfo for guessing image types with Utility\\Image" }, "minimum-stability": "dev", "prefer-stable": true, "autoload": { "psr-4": { "Esi\\Utility\\": "src/" } }, "autoload-dev": { "psr-4": { "Esi\\Utility\\Tests\\": "tests/src/" } }, "extra": { "branch-alias": { "dev-master": "2.0-dev" } }, "scripts": { "coverage": "vendor/bin/coverage-check build/logs/clover.xml 100", "cs:fix": "vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php", "cs:check": "vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php --dry-run --diff", "phpstan": "vendor/bin/phpstan analyse -c phpstan.neon", "test": "phpunit" } }