44 lines
1.0 KiB
JSON
44 lines
1.0 KiB
JSON
{
|
|
"name": "trizz/adventofcode",
|
|
"description": "My Advent of Code solutions",
|
|
"type": "project",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Tristan",
|
|
"email": "me@trizz.io"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^8.3",
|
|
"ext-mbstring": "*",
|
|
"cebe/markdown": "^1.2",
|
|
"phppkg/cli-markdown": "^2.0",
|
|
"symfony/console": "^6"
|
|
},
|
|
"require-dev": {
|
|
"friendsofphp/php-cs-fixer": "^3.3",
|
|
"jetbrains/phpstorm-attributes": "^1.0",
|
|
"nunomaduro/collision": "^7",
|
|
"phpstan/phpstan": "^1.2",
|
|
"phpunit/phpunit": "^10.5",
|
|
"rector/rector": "^0.18",
|
|
"robiningelbrecht/phpunit-pretty-print": "^1.2",
|
|
"symfony/var-dumper": "^7"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"trizz\\AdventOfCode\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Tests\\": "tests/"
|
|
}
|
|
},
|
|
"config": {
|
|
"sort-packages": true,
|
|
"optimize-autoloader": true
|
|
}
|
|
}
|