{
	"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"
} 
  |