tui/composer.json

33 lines
783 B
JSON
Raw Normal View History

2026-08-21 21:34:02 +02:00
{
"name": "anagram-finder/tui",
"description": "A TUI anagram finder in PHP",
2026-08-21 21:34:02 +02:00
"type": "project",
"require": {
"anagram-finder/core": "^0.1.0",
2026-08-21 21:34:02 +02:00
"illuminate/collections": "^13.26"
},
"license": "AGPL-3.0-only",
"autoload": {
"psr-4": {
2026-08-22 20:00:35 +02:00
"Lvl0\\AnagramFinder\\TUI\\": "src/",
"Lvl0\\AnagramFinder\\TUI\\Tests\\": "tests/"
2026-08-21 21:34:02 +02:00
}
},
"authors": [
{
"name": "myrmidex",
"email": "myrmidex@myrmidex.net"
}
],
"require-dev": {
"phpunit/phpunit": "^13",
"friendsofphp/php-cs-fixer": "^3.95"
},
"repositories": [
{
"type": "vcs",
"url": "ssh://git@forge.lvl0.xyz:2222/anagram-finder/core.git"
}
]
2026-08-21 21:34:02 +02:00
}