tui/composer.json

39 lines
966 B
JSON
Raw Permalink Normal View History

2026-08-21 21:34:02 +02:00
{
2026-08-30 23:38:24 +02:00
"name": "countdown/tui",
"description": "A TUI anagram finder in PHP",
2026-08-21 21:34:02 +02:00
"type": "project",
"require": {
2026-08-31 00:13:38 +02:00
"countdown/letters": "^0.1.3",
2026-08-30 23:38:24 +02:00
"countdown/numbers": "^0.1.0",
2026-08-22 20:51:50 +02:00
"illuminate/collections": "^13.26",
"laravel/prompts": "^0.3.23"
2026-08-21 21:34:02 +02:00
},
"license": "AGPL-3.0-only",
"autoload": {
"psr-4": {
2026-08-31 00:13:38 +02:00
"Lvl0\\Countdown\\TUI\\": "src/",
"Lvl0\\Countdown\\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",
2026-08-30 23:38:24 +02:00
"url": "ssh://git@forge.lvl0.xyz:2222/countdown/letters-core.git"
},
{
"type": "vcs",
"url": "ssh://git@forge.lvl0.xyz:2222/countdown/numbers-core.git"
}
]
2026-08-21 21:34:02 +02:00
}