FF-DataStructures/composer.json
2019-06-25 10:23:55 +02:00

37 lines
802 B
JSON

{
"name": "fastforward/data-structures",
"description": "A component providing basic and generic data structure implementations - part of the Fast Forward Family",
"type": "library",
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Marco Stoll",
"email": "marco@fast-forward-encoding.de",
"homepage": "http://marcostoll.de",
"role": "Developer"
}
],
"require": {
"php": ">=7.2",
"fastforward/utils": "^1.0.0"
},
"require-dev": {
"phpunit/phpunit": "^8",
"theseer/phpdox": "*"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/marcostoll/FF-Utils"
}
],
"autoload": {
"psr-4": {
"FF\\DataStructures\\": "src/"
},
"classmap": [
"src/"
]
}
}