map/composer.json

35 lines
805 B
JSON

{
"name": "olive/map",
"description": "Generic map for PHP",
"type": "library",
"keywords": ["map", "hashmap", "hash-map", "data", "data structure", "array", "arrayaccess"],
"require": {
"php": ">=8.1",
"php-ds/php-ds": "^1.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.8",
"phpunit/phpunit": "^9.5"
},
"license": "MPL-2.0",
"authors": [
{
"name": "R. Eric Wheeler",
"email": "sikofitt@gmail.com"
}
],
"suggest": {
"ext-ds": "To use the Data structure extension instead of polyfill."
},
"autoload": {
"psr-4": {
"Olivebbs\\Map\\": "src/Olivebbs/Map/"
}
},
"autoload-dev": {
"psr-4": {
"Olivebbs\\Tests\\Map\\": "tests/"
}
}
}