PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Nathaniel Sherwood   Encase PHP Functional Programming   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Encase PHP Functional Programming
Make functions work as if they are class functions
Author: By
Last change: Fixes to broken references
Update mockery
Upgrade to PHP 8.1
Fix missing changes
Merge branch 'master' of github.com:Deji69/encase
Define functions in one file
Add flat()
Add except()
Add isIntKeyedArray()
Add isStringKeyedArray()
Rename accumulate() to reduce() in components
Update mockery requirements
Add composer "test" script
Mark encase/regex as optional/suggested dependency
Update Functional composer.json
New functions and prep for pattern matching
Functional updates
* Added func: fill
* Added func: isAssociativeArray
* Added func: isIndexedArray
* Added func: isSequentialArray
* Added func: union
* Added func: unique
Date: 10 hours ago
Size: 935 bytes
 

Contents

Class file image Download
{ "name": "encase/functional", "type": "library", "description": "Functional, fluent and efficient", "license": "MIT", "version": "0.2", "keywords": ["functional", "fluent", "object oriented", "boxing"], "homepage": "https://github.com/Deji69/encase-functional", "authors": [ { "name": "Deji69", "email": "[email protected]" } ], "require": { "php": "^8.1", "ext-mbstring": "*" }, "require-dev": { "mockery/mockery": "^1.3", "phpunit/phpunit": "^8.5.23" }, "suggest": { "encase/regex": "Regex pattern integration in functions such as split()." }, "autoload": { "psr-4": { "Encase\\Functional\\": "." }, "exclude-from-classmap": [ "/Tests/", "/Performance/" ], "files": [ "funcs.php" ] }, "autoload-dev": { "psr-4": { "Encase\\Regex\\": "../Regex" } }, "config": { "sort-packages": true }, "scripts": { "test": "phpunit" }, "minimum-stability": "dev" }