core/composer.json

26 lines
593 B
JSON
Raw Normal View History

2026-08-21 21:34:02 +02:00
{
2026-08-22 18:36:59 +02:00
"name": "anagram-finder/core",
"description": "AnagramFinder core",
"type": "library",
2026-08-21 21:34:02 +02:00
"require": {
"illuminate/collections": "^13.26"
},
"license": "AGPL-3.0-only",
"autoload": {
"psr-4": {
2026-08-22 18:36:59 +02:00
"Lvl0\\AnagramFinder\\Core\\": "src/",
"Lvl0\\AnagramFinder\\Core\\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"
}
}