map/composer.json

35 lines
806 B
JSON
Raw Normal View History

2021-03-03 13:59:55 -08:00
{
"name": "olive/map",
2021-03-03 13:59:55 -08:00
"description": "Generic map for PHP",
"type": "library",
2022-05-11 16:41:09 -07:00
"keywords": ["map", "hashmap", "hash-map", "data", "data structure", "array", "arrayaccess"],
2021-03-03 13:59:55 -08:00
"require": {
"php": ">=8.1",
"php-ds/php-ds": "^1.4"
2021-03-03 13:59:55 -08:00
},
"require-dev": {
2022-11-30 13:32:00 -08:00
"friendsofphp/php-cs-fixer": "^3.13",
2021-03-03 13:59:55 -08:00
"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."
2021-03-03 13:59:55 -08:00
},
"autoload": {
"psr-4": {
"Olivebbs\\Map\\": "src/Olivebbs/Map/"
}
},
"autoload-dev": {
"psr-4": {
"Olivebbs\\Tests\\Map\\": "tests/"
}
}
}