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: Pushing towards more documentation

Slowly but surely getting the documentation taken care of. Still a ways to go. Some more code cleanup as well.
Updating composer.json

Removing rector and php-cs-fixer from dev dependencies for now. Updated composer for phpunit to 10.5+ or 11.0+
More cs fixes, some refactoring.
Update to Strings
minor code improvements
Initial working codebase for 2.0.0
Date: 25 days ago
Size: 1,927 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" }, "require": { "php": "^8.2 <8.5", "ext-json": "*", "ext-mbstring": "*", "ralouphie/getallheaders": "^3.0", "voku/portable-ascii": "^2.0" }, "require-dev": { "friendsofphp/php-cs-fixer": "dev-master", "phpstan/phpstan": "^1.11", "phpstan/phpstan-phpunit": "^1.4", "phpstan/phpstan-strict-rules": "^1.6", "phpunit/phpunit": "^11.0" }, "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", "autoload": { "psr-4": { "Esi\\Utility\\": "src/" } }, "autoload-dev": { "psr-4": { "Esi\\Utility\\Tests\\": "tests/src/" } }, "extra": { "branch-alias": { "dev-master": "2.0-dev" } }, "scripts": { "phpcs-fix": "vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php", "phpcs-nofix": "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" } }